您好,登錄后才能下訂單哦!
Shell中怎么實現飛行文字效果,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
#!/bin/bash [ -z $1 ] && echo "Input is invalid! " && exit 1 txt=($(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) #保存終端設置 clear echo -ne "\033[?25l" #隱藏光標 spaces() { local i j n i=0; n=0 for (( j=0; j <= ${lines}; j++ ));do [ $i -lt ${#txt[$j]} ] && (( i = ${#txt[$j]} )) && (( n = $j )) done echo ${txt[$n]}|sed 's/./ /g' } space_line=$(spaces) #傳遞的參數是欲顯示行的序數:show 1 表示第一行高亮顯示 show() { local i j text crt_line j=$1 for (( i=0; i < max_show; i++ ));do crt_line=$(( j + i - hlt_line )) if [ $i -eq ${hlt_line} ] && [ ${crt_line} -ge 0 ] && [ ${crt_line} -le ${lines} ];then text="\033[;32m"${txt[${crt_line}]}"\033[0m" elif [ ${crt_line} -lt 0 ] || [ ${crt_line} -gt ${lines} ];then text=${space_line} else text=${txt[${crt_line}]} fi echo -ne "\033[$((i+3));0H${space_line}" echo -ne "\033[$((i+3));6H${text}" done } #測試 for (( j = 0; j < lines + hlt_line +1 ; j++ ));do show $j sleep 1 done
恢復默認設置方法:
echo "" stty ${sTTY} #恢復終端設置 echo -e "\033[?25h\033[0;0H" #恢復光標
關于Shell中怎么實現飛行文字效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。