从txt文件运行bash命令

我在txt文件中有一些命令,我​​需要逐行执行所有命令。我该怎么办?

回答:

只要做bash file

$ cat file 

date

echo '12*12' | bc

$ bash file

Mon Nov 26 15:34:00 GMT 2012

144

如果别名只是运行 bash -i file

无需担心文件扩展名或执行权限。

以上是 从txt文件运行bash命令 的全部内容, 来源链接: utcz.com/qa/413271.html

回到顶部