Linux常用命令
下载文件到指定目录
wget -c http://xdebug.org/files/xdebug-2.1.2.tgz -P /usr/dev
/usr/local/phpcgi/sbin/phpd-fpm restart 重启PHPCGI
/usr/local/nginx/sbin/nginx -s reload 重新加载Nginx的配置文件
重启nginx
killall nginx 杀死所有nginx进程
/usr/local/nginx/sbin/nginx 启动nginx
使用apache自带的ab进行压力测试:
-c 表示并发连接数
-n 表示总共总共请求的连接数
-X 指定代理
-C 指定Cookie
-v 设置显示信息的详细程度 4或更大值会显示头信息, 3或更大值可以显示响应代码(404, 200等), 2或更大值可以显示警告和其他信息
Windows下多cookie设置
ab -c 1 -n 1 -X 127.0.0.1:8888 -C test=aa;againtest=bb -v 4 http://localhost:81/
或者
ab -c 1 -n 1 -X 127.0.0.1:8888 -C "test=aa;againtest=bb" -v 4 ttp://localhost:81/
Linux下多cookie设置
ab -c 1 -n 1 -X 127.0.0.1:8888 -C 'test=aa;againtest=bb' -v 4 http://localhost:81/
或者
ab -c 1 -n 1 -X 127.0.0.1:8888 -C "test=aa;againtest=bb" -v 4 http://localhost:81/
注意:windows下多cookie的设置可以不要引号或者必须双引号,而linux则必须要引号且双引号、单引号都可
Shell的与
if [ 3>=2 -a 5>4 ]; then yes
if [ 3>=2 && 5>4 ]; then no
if 3>=2 && 5>4 ; then yes
if 3>=2 -a 5>4 ; then no
if [ 3>=2 ] -a [ 5>4 ]; then yes
if [ 3>=2 ] && [ 5>4 ]; then no
if [ 3>=2 && 5>4 ]; then no
if 3>=2 && 5>4 ; then yes
if 3>=2 -a 5>4 ; then no
if [ 3>=2 ] -a [ 5>4 ]; then yes
if [ 3>=2 ] && [ 5>4 ]; then no