hwclock -w :將系統時間同步到硬件時間
hwclock -s :將硬件時間讀取到系統時間
[code][root@iZ28g26851kZ ~]# man ls LS(1) User Commands LS(1) NAME ls - list directory contents SYNOPSIS ls [OPTION]... [FILE]... DESCRIPTION List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort. Mandatory arguments to long options are mandatory for short options too. -a, --all do not ignore entries starting with . -A, --almost-all do not list implied . and .. --author with -l, print the author of each file -b, --escape print octal escapes for nongraphic characters注意看第一行
[code]LS(1) User Commands LS(1)ls(1)中的(1)代表“章節”,
1:用戶命令 (/bin, /user/bin, /user/local/bin)
2:系統命令
3:庫用戶
4:特殊文件(設備文件)
5:文件格式(配置文件的語法)
6:游戲
7:雜項(Miscellaneous)
8:管理命令(/sbin, /user/sbin, /user/local/sbin)通常只有管理員才能使用
[code][root@iZ28g26851kZ ~]# whatis read read (1p) - read a line from standard input read (2) - read from a file descriptor read (3p) - read from a file read [builtins] (1) - bash built-in commands, see bash(1)
<>:必選
[]:可選
…可以出現多次
|:多選一
{}:分組
man:
[code] NAME:命令名稱及功能簡要說明 SYNOPSIS:用法說明,包括可用的選項 DESCRIPTION:命令功能的詳盡說明,可能包括每一個選項的意義 OPTIONS:說明每一個選項的意義 FILES:此命令相關的配置文件 BUGS: EXAMPLES:使用示例 SEE ALSO:另外參照翻屏:
[code] 向後翻一屏:space 向前翻一屏:b 向後翻一行:enter 向前翻一行:k查找:
[code] /keyword:向後 ?keyword:向前 搜索完之後 n:定位向後一個結果 N:定位向前一個結果
如果不加參數p,創建會失敗,因為x文件不存在,這時加上-p就會自動創建x文件
[code][root@iZ28g26851kZ ~]# mkdir /opt/x/y mkdir: cannot create directory `/opt/x/y': No such file or directory [root@iZ28g26851kZ ~]# mkdir -p /opt/x/y [root@iZ28g26851kZ ~]#
[code][root@iZ28g26851kZ opt]# mkdir -vp x/y/z mkdir: created directory `x' mkdir: created directory `x/y' mkdir: created directory `x/y/z' [root@iZ28g26851kZ opt]#
[code][root@iZ28g26851kZ opt]# tree x x ├── y │ └── k └── z 3 directories, 0 files [root@iZ28g26851kZ opt]#
[code][root@iZ28g26851kZ opt]# rmdir x rmdir: failed to remove `x': Directory not empty [root@iZ28g26851kZ opt]#
[code][root@iZ28g26851kZ x]# stat test File: `test' Size: 9 Blocks: 8 IO Block: 4096 regular file Device: ca01h/51713d Inode: 1066408 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2016-05-04 10:55:47.016036253 +0800 Modify: 2016-05-04 10:55:47.016036253 +0800 Change: 2016-05-04 10:55:47.016036253 +0800
默認刪除文件會提示用戶是否刪除,也就是加了 -i的效果