内置命令,外置命令
shell
shell指令
内置命令:在系统启动时就加入内存,常驻内存,执行效率更高,但占用资源
外置命令:用户需要从磁盘中读取程序文件,再读入内存加载
通过linux的type命令验证是否内置,
[root@localhost ~]#
[root@localhost ~]# type cd
cd 是 shell 内嵌
外置命令,也称为,自己单独下载的文件系统命令,处于bash shell之外的程序
###一般在以下目录
/bin
/usr/bin
/sbin
/usr/sbin
外置命令的特点是一定会开启子进程
[root@localhost ~]# ps -f --forest
UID PID PPID C STIME TTY TIME CMD
root 2806 2797 0 14:32 pts/0 00:00:00 bash
root 3714 2806 0 15:20 pts/0 00:00:00 \_ ps -f --forest ###单独开启一个子进程
父进程发出外部命令:ps -f ----------> 子进程执行外部命令: ps -f
内置命令特点是不会产生子进程去执行;内置命令和shell是为一体的,是shell的一部分,不需要去读取某个文件,系统启动后,就执行在内存中了;用type验证即可
查看内置shell内置命令
root@localhost ~]# compgen -b
..
[
alias
bg
bind
break
builtin
caller
cd
command
compgen
complete
compopt
continue
declare
dirs
disown
echo
............
标签:00,内置,外置,命令,Shell,shell,root
From: https://www.cnblogs.com/xjianbing/p/17752477.html