1. 实时监控文件内容变化
tail -f xxx
2. 查看文件前5行
head -5 xxx
3. ssh对话失效后关闭对话(可以避免直接关闭终端)
~. (好像显示有问题,按钮是 ~.)
4. curl下载文件(详细参见http://www.cnblogs.com/gbyukg/p/3326825.html,curl功能很强大)
curl -O url # 下载文件,文件名未默认 curl -o new_name url # 保存到本地重命名为new_name curl -O url1 -O url2 # 下载多个文件
5. scp,远程拷贝文件
scp local_file remote_username@remote_ip:remote_folder scp -r local_folder remote_username@remote_ip:remote_folder # 从远程复制到本地只需调换位置 # 参考自 http://www.cnblogs.com/peida/archive/2013/03/15/2960802.html
6. 定时任务crontab
crontab -e # 编辑定时任务,格式见下图
7. halt
格式:halt
格式:shutdown -h
停止系统运行,但不关闭电源。
格式:poweroff
停止系统运行,同时关闭电源。
格式:reboot
重启系统。