• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Linux系统命令解析你所不熟悉的都在这里

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

  对于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命令不熟悉,或者感兴趣的用户快来看看吧。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
什么是运维?运维工种有哪些?发布时间:2022-02-10
下一篇:
Linux禁止MySQL开机自启动的小技巧发布时间:2022-02-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap