请解释一下用于执行python文件的shell代码
任何人都可以解释一下下面的代码吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它列出当前工作目录中的所有 .py 文件,并将输出放入文件
xx
中:然后循环,从 xx 中读取:
对于每一行,
$myline
为设置为该行的值。它运行时用
$myline
的值替换上述每一行中的 $myline。然后它运行参考文献:
此代码不太安全,如果文件名称中包含空格或
\n
字符。例如,如果文件名为which file.py
,则运行
而不是
这可以通过在 $myline 周围放置双引号来修复:
如果文件名具有
\n
字符,那么 ls 命令将在多行上打印单个文件名。所以read myline
不会读取整个文件名。脚本又会被破坏。这个问题可以使用以下模式来解决
It lists all the .py files in the current working directory, and puts the output in file
xx
:Then it loops, reading from xx:
For each line,
$myline
is set to the value of the line. It runswith the value of
$myline
being substituted for $myline on each of the above lines. Then it runsReferences:
This code is not very safe if the files have spaces or
\n
characters in their names. For example, if a file is namedwhich file.py
, thenruns
instead of
This can be fixed by putting double-quotes around $myline:
If a filename has a
\n
character, then thels
command will print the single file name on more than one line. Soread myline
will not slurp the entire filename. Again the script will break.This problem can be fixed using the pattern