Shell中實現飛行文字效果_linux shell

來源:互聯網
上載者:User

大家肯定見過WEB頁面上飛行字的效果,但是在Linux系統中,特別是bash命令列模式下,如何?echo出來的字串以飛行的特效展現出來呢?
這個特效不見得實用,但偶爾拿來自娛自樂或炫耀一番倒是個不錯的方法,呵呵,下面以一段Shell Script代碼來給大家講解如何?……

#!/bin/bash[ -z $1 ] && echo "Input is invalid! " && exit 1txt=($(cat $1|sed 's/ \+/_/g'))lines=${#txt[@]}max_show=10   #最多顯示行數(超過總行數則設為總行數)[ ${max_show} -gt ${lines} ] && max_show=${lines}hlt_line=3  #高亮顯示位置(不超過總行1/2,設為3實際是第4行)[ ${hlt_line} -gt $(( lines / 2 )) ] && hlt_line=$(( lines / 2 ))sTTY=$(stty -g)  #儲存終端設定clearecho -ne "\033[?25l" #隱藏游標spaces() {local i j ni=0; n=0for (( j=0; j <= ${lines}; j++ ));do[ $i -lt ${#txt[$j]} ] && (( i = ${#txt[$j]} )) && (( n = $j ))doneecho ${txt[$n]}|sed 's/./  /g'}space_line=$(spaces)#傳遞的參數是欲顯示行的序數:show 1 表示第一行高亮顯示show() {local i j text crt_linej=$1for (( i=0; i < max_show; i++ ));docrt_line=$(( j + i - hlt_line ))if [ $i -eq ${hlt_line} ] && [ ${crt_line} -ge 0 ] && [ ${crt_line} -le ${lines} ];thentext="\033[;32m"${txt[${crt_line}]}"\033[0m"elif [ ${crt_line} -lt 0 ] || [ ${crt_line} -gt ${lines} ];thentext=${space_line}elsetext=${txt[${crt_line}]}fiecho -ne "\033[$((i+3));0H${space_line}"echo -ne "\033[$((i+3));6H${text}"done}#測試for (( j = 0; j < lines + hlt_line +1 ; j++ ));doshow $jsleep 1done

恢複預設設定方法:

echo ""stty ${sTTY} #恢複終端設定echo -e "\033[?25h\033[0;0H" #恢複游標

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.