有谁知道是否有办法在
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 ...
所以,我希望将这个文本文件作为参数传递给终端中的命令,可以自动完成工作…
提前致谢,
佩希