有没有人知道是否有办法在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
...
所以,我希望将这个文本文件作为参数传递给终端中的命令,可以自动完成工作......
提前致谢,
PEIXE
答案 0 :(得分:19)
这被称为“shell脚本。”
将其添加到文件顶部:
#!/bin/sh
然后执行以下命令:
chmod +x filename
然后像程序一样执行:
./filename
或者,您可以直接执行shell,告诉它执行文件中的命令:
sh -e filename
答案 1 :(得分:4)
使文件可执行:
chmod u+x thefile
./thefile
或将其作为sh:
的参数运行sh thefile
答案 2 :(得分:2)
您可以编写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
...