笔记来源 菜鸟教程——Shell 教程 https://www.runoob.com/linux/linux-shell.html 侵删
什么是Shell?
Shell 是指一种应用程序,这个应用程序提供了一个界面,用户通过这个界面访问操作系统内核的服务。
Shell 脚本(shell script),是一种为 shell 编写的脚本程序。
Linux 的 Shell 种类众多,常见的有:
- Bourne Shell(/usr/bin/sh或/bin/sh)
- Bourne Again Shell(/bin/bash)
- C Shell(/usr/bin/csh)
- K Shell(/usr/bin/ksh)
- Shell for Root(/sbin/sh)
- ……
如何编写Shell脚本?
1. 编写Shell代码
(1)文件名.sh(2)以 #!/bin/bash 开头
标签:返回,文件,Shell,编程,笔记,echo,file,true From: https://www.cnblogs.com/swbna/p/16942569.html