#===============================================================================## FILE: tput_demo.sh# # USAGE: ./tput_demo.sh # # DESCRIPTION: The screen displays the contents of the local area, and automatic polling refresh function # # AUTHOR: Eric Wu, mesopodamia@gmail.com# COMPANY: Chengdu Digital Sky Technology Co., Ltd.# CREATED: 06/11/2014 18:24#===============================================================================NAME_LIST=("Raul" "Ronaldo" "Messi" "Zidane" "Figo" "Maradona" "Basten" "Beckham")cleartput sc;tput cup 3 5 ;echo "--------------------"tput cup 5 5 ;echo "--------------------"tput rcwhile true : do for NAME in ${NAME_LIST[@]} do usleep 100000; tput sc ; tput cup 4 5 ; echo " $NAME " ; tput rc done done需要了解更详细的内容,可以访问下面的网页: