网课地址:?courseId=232007
date -u 查看格林威治时间(UTC)
date -s "xx:xx:xx" 设置时间(需要super用户权限)
+%Y--%m--%d 格式化显示时间
-n 指定显示的行数
-n 指定显示的行数
-f 追踪显示文件更新(一般用于查看日志,命令不会退出,而是持续显示新加入的内容)
-v 查看详细信息
shutdown [关机、重启] 时间
常用参数有:
-h 关闭计算机
-r 重新启动
如:
shutdown -h now 立即关机
shutdown -h +10 10分钟后关机
shutdown -h 23:30 23:30分关机
shutdown -r now 立即重启
zip linuxcast.zip myfile
unzip linuxcast.zip
gzip linuxcast.net
tar -cvf out.tar linuxcast
tar -xvf linuxcast.tar
tar -cvzf backup.tar.gz/etc
-z参数将归档后的归档文件进行gzip压缩以减少大小
locate keyword
此命令需要预先建立数据库,数据库默认每天更新一次,可用update命令手工建立、更新数据库:
updatedb
find 查找位置 查找参数
如:
find . -name *linuxcast*
指当前目录下基于文件名查找文件名包含linuxcast的文件。
再比如:
find / -name *.conf
find / -perm 777
find / -type d
find . -name"a*" -exec ls -l{} \;
其中
-perm 指定权限查找(数字)
-type 指定类型查找
-type d 查找目录类型文件
find . -name"a*" -exec ls -l{} \;
查找以a开头的文件并返回这些文件的详细信息
总结一下find的常用查找条件,有:
下一个教程:Linux常用命令(15个)