網(wǎng)課地址:?courseId=232007
date -u 查看格林威治時間(UTC)
date -s "xx:xx:xx" 設(shè)置時間(需要super用戶權(quán)限)
+%Y--%m--%d 格式化顯示時間
-n 指定顯示的行數(shù)
-n 指定顯示的行數(shù)
-f 追蹤顯示文件更新(一般用于查看日志,命令不會退出,而是持續(xù)顯示新加入的內(nèi)容)
-v 查看詳細(xì)信息
shutdown [關(guān)機、重啟] 時間
常用參數(shù)有:
-h 關(guān)閉計算機
-r 重新啟動
如:
shutdown -h now 立即關(guān)機
shutdown -h +10 10分鐘后關(guān)機
shutdown -h 23:30 23:30分關(guān)機
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參數(shù)將歸檔后的歸檔文件進(jìn)行g(shù)zip壓縮以減少大小
locate keyword
此命令需要預(yù)先建立數(shù)據(jù)庫,數(shù)據(jù)庫默認(rèn)每天更新一次,可用update命令手工建立、更新數(shù)據(jù)庫:
updatedb
find 查找位置 查找參數(shù)
如:
find . -name *linuxcast*
指當(dāng)前目錄下基于文件名查找文件名包含linuxcast的文件。
再比如:
find / -name *.conf
find / -perm 777
find / -type d
find . -name"a*" -exec ls -l{} \;
其中
-perm 指定權(quán)限查找(數(shù)字)
-type 指定類型查找
-type d 查找目錄類型文件
find . -name"a*" -exec ls -l{} \;
查找以a開頭的文件并返回這些文件的詳細(xì)信息
總結(jié)一下find的常用查找條件,有:
下一個教程:Linux常用命令(15個)