Linux命令执行过程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令执行过程相关的知识,希望对你有一定的参考价值。
在shell中可执行命令分为:内部命令:由shell自带,会随着系统启动
外部命令:在系统中有对应的可执行文件
通过type可查看命令是否为内部命令
[[email protected] ~]#type pwd # 内部命令
pwd is a shell builtin
[[email protected] ~]#type top # 外部命令
top is /usr/bin/top
内部命令直接从内存中读取而外部命令需要从系统文件中读取
[[email protected] ~]#echo $PATH # 查看外部命令搜索路径
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[[email protected] ~]#which top # 查看外部命令可执行文件的路径
/usr/bin/top
[[email protected] ~]#whereis top # 查看外部命令可执行文件的路径以及帮助文档路径
top: /usr/bin/top /usr/share/man/man1/top.1.gz
[[email protected] ~]#hash # 为了加快外部命令的执行过程会放入缓存表
hits command
1 /usr/bin/cal
3 /usr/bin/tail
2 /usr/bin/timedatectl
15 /usr/bin/date
1 /usr/bin/cat
5 /usr/bin/whereis
2 /usr/bin/ls
命令执行顺序:内部命令>hash表中的命令>外部命令
以上是关于Linux命令执行过程的主要内容,如果未能解决你的问题,请参考以下文章
mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段