shell脚本之无限计时器

无限计时器

a=0
  	while :
do
        let a++
        echo $a
        sleep 1
done

新建一个.sh结尾的文件复制粘贴进去即可使用!

你可能感兴趣的:(Shell,学习,linux,bash)