如何编写简单的Shell脚本文件之Linux的基本操作

2022-08-09 社会 95阅读

编写shell脚本 首先你要有Linux命令的基础,怎么进入文件,怎么执行文件,有什么命令等等。

  1. 我们的shell 类型有很多,常见的shell环境有sh,bash,csh,zsh等等。在Linux的脚本中可以最常见的就是  sh或者shell。在shell脚本中最开始 要指定shell环境。于是乎我们有了shell的沙邦: 

    /bin/sh 或者/bin/bash

  2. shell脚本的格式:shell脚本一般是以*.sh 为名字,在权限上面是有可执行权限x的也就是chmod u+x *.sh

  3. 命令的执行:3种:

    sh 脚本路径/脚本名

    cd 脚本路径 && ./脚本名

    soure 脚本路径/脚本

  4. 写一个最简单的脚本吧:

[root@linuxprobe ~]#vim 1.sh

/bin/sh

echo "this is my frist scripts,more and more linux ,you can read 《Linux就该这样学》"

[root@linuxprobe ~]#chmod u+x 1.sh

[root@linuxprobe ~]#./1.sh

this is my frist scripts,more and more linux ,you can read 《Linux就该这样学》

学习Linux需要多学多练

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com