美文网首页
shell斜杠转圈效果

shell斜杠转圈效果

作者: tmax | 来源:发表于2018-03-24 15:03 被阅读0次
    #!/bin/bash
    while :
    do
        echo -n -e "\033[5m-\033[0m\b"
        sleep 0.25
        echo -n -e "\033[5m/\033[0m\b"
        sleep 0.25
        echo -n -e "\033[5m|\033[0m\b"
        sleep 0.25
        echo -n -e "\033[5m\\\\\033[0m\b"
        sleep 0.25
    done
    

    相关文章

      网友评论

          本文标题:shell斜杠转圈效果

          本文链接:https://www.haomeiwen.com/subject/huvqcftx.html