Ls
1 2 3 | ls -rthl (时间反排序) ls -lrSh (按大小反排序) ls -ld dir1 (只列出dir1的属性,而非内容) |
Rm
1 2 3 4 5 | touch -- - test rm -f -- - test or ls -i find / -inum inum_value - exec rm -f {} \; |
Rpm
1 2 3 4 | rpm -qa | grep ls (查看 ls 包有没安装) rpm -qf ` which tree` (查看tree 命令属于哪个包) rpm -ql firefox (查看 Firfox 安装目录) rpm -ivh --aid tar .rpm (安装时解决包的依赖) |
Cp
1 2 3 4 5 | 连目录拷隐藏文件可以拷贝的,比如tmp里如有个 ".test" , $ cp -av tmp/* /destination/path ".test" 拷不过去,但 $ cp -av tmp /destination/path 便可以。 |
Shutdown
1 2 3 | shutdown -h now 立即关机 shutdown -h -t 1800 (3m) 3m后关机 shutdown -h 12:30 12:30关机 |
Diff