close
#!/bin/bash

count=0
while [ true ]
do
        count=$(( $count+1 ))
        echo $count
        if [ $count -eq 10 ];then
                break
        fi
        sleep 1
done

arrow
arrow
    全站熱搜

    JerryCheng 發表在 痞客邦 留言(0) 人氣()