==========
下载 -o 文件名;-O默认文件名保存
curl -o baidu.hml http://www.baidu.com
curl -O http://su.bdimg.com/static/superplus/img/logo_white_ee663702.png
curl -O http://121.199.28.164/llc/resource/img/jidihaiyang0[1-2].jpg
-x proxy代理
curl -x 123.45.67.89:1080 -o page.html http://www.linuxidc.com
-D 写入header到cookie0001.txt文件
curl -x 123.45.67.89:1080 -o page.html -D cookie0001.txt http://www.linuxidc.com
-b 引用本地cookie0001.txt,发送请求
curl -x 123.45.67.89:1080 -o page1.html -D cookie0002.txt -b cookie0001.txt http://www.linuxidc.com
-d 发送http的post请求
curl -d "cmd=login&username=loganv&password=123456&vcode=1234" -D cookie001.txt http://www.linuxidc.com/ajax.aspx
-F 表单提交,post上传文件可用@localfilepath
curl -F upload=@123.txt -F nick=loganv http://cgi2.tky.3web.ne.jp/~zzh/up_file.cgi
-T 上传本地文件到ftp服务器 -u una:pwd
curl -T 123.txt -u qxu1606420111:ftpftp123 ftp://qxu1606420111.my3w.com/myfolder/a.txt
-A 模拟请求浏览器
avascript:alert(window.navigator.userAgent);
curl -A "Mozilla/5.0 (iPod touch; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4" -o baidu.html -D cookie0001.txt http://www.baidu.com
-I 仅返回header
-H "Connection: keep-alive \n Content-Type: text/html" 设置 header
参考:http://www.cnblogs.com/-clq/archive/2012/01/29/2330827.html
==========
查看8080端口的信息(PID)
lsof -i tcp:8080
杀掉8080端口进程(对应的PID)
kill PID
==========
调整休眠模式
sudo pmset -g
Mac默認的hibernatemode是3,我們需要把它改成0
sudo pmset -a hibernatemode 0
清除
sudo rm /var/vm/sleepimage
查看
pmset -g | grep hibernatemode
==========
修改文件夹权限
sudo chmod -R 777 [文件夹的路径]
==========
关于 .DS_store
删除.DS_strore
sudo find / -name ".DS_Store" -depth -exec rm {} \;
禁止.DS_store生成
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
恢复.DS_store生成
defaults delete com.apple.desktopservices DSDontWriteNetworkStores
==========
隐藏/显示文件
显示:defaults write com.apple.finder AppleShowAllFiles -bool true
重启finder
隐藏:defaults write com.apple.finder AppleShowAllFiles -bool false
==========
安装Mac系统到U盘
sudo Mac系统名称.app(路径)/Contents/Resources/createinstallmedia --volume /Volumes/U盘名称 --applicationpath Mac系统名称.app(路径) --nointeraction
==========
scp 远程拷贝,基于ssh的cp;加-r 参数可以拷贝文件夹
本地拷贝到远程
scp ~/Desktop/1.txt root@192.168.0.1:~/Downloads/
远程拷贝到本地
scp root@192.168.0.1:~/Downloads/1.txt ~/Desktop/1.txt