重启nginx
/usr/local/nginx/sbin/nginx -s reload
修改 nginx conf
vim /usr/local/nginx/conf/vhost/xxx.conf
删除整个目录
rm -rf /folder/
拷贝整个目录
cp -R /somefolder/. /someotherfolder
修改所有文件权限(注意最后的斜杠和分号,如果想要修改目录则把 f 换为 d)
find -type -f -exec chmod 655 {} ;
经过实践发现 -type 后面的参数不能加 '-'
find -type f -exec chmod 655 {} ;
远程下载文件(用来远程下载wordpress程序)
wget url
解压缩
unzip