[Bash Scripting LOOP]for, while. until
Posted profesor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Bash Scripting LOOP]for, while. until相关的知识,希望对你有一定的参考价值。
#!/bin/bash for item in * do if [ -f $item ] then echo $item fi done
for
do
done
if
then
(elif...then...)
(else)
fi
以上是关于[Bash Scripting LOOP]for, while. until的主要内容,如果未能解决你的问题,请参考以下文章