gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 00:22:45 25 4
gpt4 key购买 nike

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

我需要运行很多脚本(大约 1000 个)。这些脚本在 python 中,每个都有 2 个参数(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
...

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

提前致谢

画画

最佳答案

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

将此添加到文件顶部:

#!/bin/sh

然后执行这条命令:

chmod +x filename

然后像程序一样执行:

./filename

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

sh -e filename

关于linux - 在终端中运行文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6545968/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com