在terminal中运行文本文件

有谁知道是否有一种方法来自动运行在shell命令列表(从文本文件)?

我需要运行很多脚本(大约1000)。 脚本是在Python中,每个取两个参数(dir_#和sample#)

我所做的文本文件看起来像这样…

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 ... 

所以,我希望将这个文本文件作为parameter passing给terminal中的命令,可以自动完成这项工作…

提前致谢,

佩希

这就是所谓的“shell脚本”。

将其添加到文件顶部:

 #!/bin/sh 

然后执行这个命令:

 chmod +x filename 

然后像程序一样执行它:

 ./filename 

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

 sh -e filename 

要么使文件可执行:

 chmod u+x thefile ./thefile 

或者运行它作为sh的一个参数:

 sh thefile 

你可以编写一个shell脚本:

 #! /bin/sh 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文件:

 source filename