请解释一下用于执行python文件的shell代码

发布于 2025-01-04 04:43:30 字数 177 浏览 0 评论 0原文

任何人都可以解释一下下面的代码吗?

ls  *.py > xx
while [ 1 ]
do
read myline || break
python $myline 
python $myline --genxml 
done<xx
service nac-ms restart

Can any one explain the below code please?

ls  *.py > xx
while [ 1 ]
do
read myline || break
python $myline 
python $myline --genxml 
done<xx
service nac-ms restart

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2025-01-11 04:43:30

它列出当前工作目录中的所有 .py 文件,并将输出放入文件 xx 中:

ls  *.py > xx

然后循环,从 xx 中读取:

while [ 1 ]
do
read myline || break
...
done<xx

对于每一行,$myline 为设置为该行的值。它运行时

python $myline 
python $myline --genxml 

$myline 的值替换上述每一行中的 $myline。然后它运行

service nac-ms restart

参考文献:


此代码不太安全,如果文件名称中包含空格或 \n 字符。例如,如果文件名为 which file.py,则

python $myline

运行

python which file.py

而不是

python "which file.py"

这可以通过在 $myline 周围放置双引号来修复:

python "$myline"
python "$myline" --genxml

如果文件名具有 \n 字符,那么 ls 命令将在多行上打印单个文件名。所以 read myline 不会读取整个文件名。脚本又会被破坏。

这个问题可以使用以下模式来解决

find . -iname "*.py" -print0 | xargs -0 ...

It lists all the .py files in the current working directory, and puts the output in file xx:

ls  *.py > xx

Then it loops, reading from xx:

while [ 1 ]
do
read myline || break
...
done<xx

For each line, $myline is set to the value of the line. It runs

python $myline 
python $myline --genxml 

with the value of $myline being substituted for $myline on each of the above lines. Then it runs

service nac-ms restart

References:


This code is not very safe if the files have spaces or \n characters in their names. For example, if a file is named which file.py, then

python $myline

runs

python which file.py

instead of

python "which file.py"

This can be fixed by putting double-quotes around $myline:

python "$myline"
python "$myline" --genxml

If a filename has a \n character, then the ls command will print the single file name on more than one line. So read myline will not slurp the entire filename. Again the script will break.

This problem can be fixed using the pattern

find . -iname "*.py" -print0 | xargs -0 ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文