linux – 在终端中运行文本文件

前端之家收集整理的这篇文章主要介绍了linux – 在终端中运行文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有谁知道是否有办法在 shell自动运行一个命令列表(来自文本文件)?

我需要运行很多脚本(大约1000个).脚本在python中,每个脚本有两个参数(dir_#和示例#)

我制作的文本文件看起来像这样……

python /home/name/scripts/get_info.py dir_1 sample1
     python /home/name/scripts/get_info.py dir_2 sample2
     python /home/name/scripts/get_info.py dir_3 sample3
     python /home/name/scripts/get_info.py dir_4 sample4
     ...

所以,我希望将这个文本文件作为参数传递给终端中的命令,可以自动完成工作…

提前致谢,

佩希

解决方法

这被称为“shell脚本”.

将其添加文件顶部:

#!/bin/sh

后执行以下命令:

chmod +x filename

然后像程序一样执行:

./filename

或者,您可以直接执行shell,告诉它执行文件中的命令:

sh -e filename
原文链接:https://www.f2er.com/linux/394665.html

猜你在找的Linux相关文章