1. shell就是批处理文件,相当于windows下的bat文件,可以自启动,在执行时将命令解释成内核可执行的代码,XXX.sh为文件名。
2. 常用shell分类
Shell名称 |
开发者 |
命令名称 |
Bourne |
S.R.Bourne |
/bin/sh |
C |
Bill Joy |
/bin/csh |
Kom |
David |
/bin/ksh |
3. 查看相关命令
env 查看当前使用的是那种shell
chsh –s 新shell 修改shell
命令补全 单击tab键
man 命令 显示命令帮助信息
4. history 显示历史命令
history 5 显示最近使用的5条命令
history | more 分页显示历史命令(从最开始算起)
history !5 说明第5条命令
history !ls 说明最后一次以ls开头的命令
5. rm命令