雲端計算學習資料分享:type檢視命令

千鋒雲端計算發表於2019-07-25

雲端計算學習資料分享:type檢視命令

type 檢視命令型別,例如該命令是alias,還是內建命令,還是某個檔案,還是關鍵字

哪種神仙:天上還是地上,還是水裡遊的

[root@tianyun ~]# type ll

ll is aliased to `ls -l --color=auto'

[root@tianyun ~]# type ls

ls is aliased to `ls --color=auto'

[root@tianyun ~]# type cd

cd is a shell builtin //builtin內建命令

[root@tianyun ~]# type for

for is a shell keyword //keyword關鍵字

[root@tianyun ~]# type useradd

useradd is /usr/sbin/useradd

[root@tianyun ~]# type -a ls //-a列出該命令所有型別

ls is aliased to `ls --color=auto'

ls is /usr/bin/ls

file 檢視檔案型別,例如文字檔案,二進位制檔案,管道檔案,裝置檔案,連結檔案

人,神,魔,妖

[root@tianyun ~]# file /etc/hostname

/etc/hostname: ASCII text

[root@tianyun ~]# file /dev/sda

/dev/sda: block special

[root@tianyun ~]# file /dev/zero

/dev/zero: character special

stat 檔案的詳細屬性,例如檔案的名稱,大小,許可權,atime,ctime,mtime

人身高,體重,性別,年齡,道行

[root@tianyun ~]# stat /etc/hostname

File: '/etc/hostname'

Size: 22 Blocks: 8 IO Block: 4096 regular file

Device: fd00h/64768d Inode: 68703440 Links: 1

Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)

Access: 2017-07-25 11:11:14.257652134 +0800

Modify: 2017-07-25 10:21:34.175003119 +0800

Change: 2017-07-25 10:21:34.176003171 +0800


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69916964/viewspace-2651789/,如需轉載,請註明出處,否則將追究法律責任。

相關文章