大家肯定見過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" #恢複游標