Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux系統命令解析

Linux系統命令解析

日期:2017/1/25 10:31:19      編輯:關於Linux

  對於Linux系統,用戶們一定對它那功能強大的命令印象深刻,不過有許多Linux用戶對Linux系統中的各項命令並不太熟悉,下面就和小編一起來看看Linux系統的命令吧。

Linux系統命令解析

  Linux的命令分為內部命令和外部命令:

  內部命令在系統啟動時就調入內存,是常駐內存的,所以執行效率高。

  外部命令是系統的軟件功能,用戶需要時才從硬盤中讀入內存。

  type可以用來判斷一個命令是否為內置命令

  type: usage: type [-afptP] name [name 。。。]

  [root@linuxeye ~]# type type

  type is a shell builtin

  [root@linuxeye ~]# type -p type

  [root@linuxeye ~]# type -t type

  builtin

  [root@linuxeye ~]# type type

  type is a shell builtin

  [root@linuxeye ~]# type -t type

  builtin

  [root@linuxeye ~]# type pwd

  pwd is a shell builtin

  [root@linuxeye ~]# type whiptail

  whiptail is /usr/bin/whiptail

  [root@linuxeye ~]# type -t whiptail

  file

  enable既可以查看內部命令,同時也可以判斷是否為內部命令

  [root@linuxeye ~]# enable -a #查看內部命令

  [root@linuxeye ~]# enable whiptail #非內部命令

  -bash: enable: whiptail: not a shell builtin

  [root@linuxeye ~]# enable pwd #是內部命令

  內部命令用戶輸入時系統調用的速率快,不是內置命令,系統將會讀取環境變量文件.bash_profile、/etc/profile去找PATH路徑。

  然後在提一下命令的調用,有些歷史命令使用過後,會存在在hash表中,當你再次輸入該命令它的調用會是這樣一個過程。

  hash——》內置命令——》PATH 命令的調用其實應該是這樣一個過程。

  [root@linuxeye ~]# type pwd

  pwd is a shell builtin

  [root@linuxeye ~]# type cat

  cat is /usr/bin/cat

  [root@linuxeye ~]# ls linuxeye*

  linuxeye.pem linuxeye.txt

  [root@linuxeye ~]# cat linuxeye.txt

  linuxeye

  [root@linuxeye ~]# hash -l #顯示hash表

  builtin hash -p /usr/bin/cat cat

  builtin hash -p /usr/bin/ls ls

  [root@linuxeye ~]# type cat

  cat is hashed (/usr/bin/cat)

  [root@linuxeye ~]# hash -r #清除hash表

  [root@linuxeye ~]# type cat

  cat is /usr/bin/cat

  從上面操作可以看出。hash表不存放系統內置命令。

  這就是Linux系統中的內部命令和外部命令了,對Linux命令不熟悉,或者感興趣的用戶快來看看吧。

Copyright © Windows教程網 All Rights Reserved