[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的主要内容,如果未能解决你的问题,请参考以下文章

For loop in bash

sh BASH FOR LOOP零填充

sh bash__for-loop.sh

目录上的 Bash For-Loop

sh Bash:设置-x,for,in,echo,do,done:Debug for Loop使用set xtrace

为啥我的 Linux bash 中这个简单的 FOR LOOP 不起作用?