优选主流主机商
任何主机均需规范使用

如何运行shell脚本(三种方法可执行)

分享下如何如何运行shell脚本,举个栗子:脚本名称为calc.sh

第一种办法直接把脚本文件当成子shell(bash)的一个参数传入。

Quote:

$ bash calc.sh
$ type bash
bash is hashed (/bin/bash)

第二种办法是通过bash的内置命令.或source执行。

Quote:

$ . ./calc.sh

$ source ./calc.sh
$ type .
. is a shell builtin
$ type source
source is a shell builtin

第三种办法是修改文件为可执行,直接在当前shell下执行。

Quote:

$ chmod ./calc.sh
$ ./calc.sh

未经允许不得转载:搬瓦工中文网 » 如何运行shell脚本(三种方法可执行)