我需要运行很多脚本(大约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总结
以上是内存溢出为你收集整理的linux – 在终端中运行文本文件全部内容,希望文章能够帮你解决linux – 在终端中运行文本文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)