3.1-shell-解释器
# 3
# shell 解释器 可编程 可控制操作系统 人user和计算机内核kernel 沟通的工具。 命令行终端。
cat /etc/shells
# /bin/sh
# /bin/bash
# /usr/bin/sh
# /usr/bin/bash
echo $SHELL
su - root
# $ 和 #
dnf -y install csh
# 读安装源 然后下载
cat /etc/shells
sh
exit
chs
exit
a-z 对应的指令
# 内部命令 os自带的
# 外部命令
type echo
type cat