据我所知,可以使用 echo 中的退格序列将光标向左移动。但有没有可能使用 echo ?
更改光标的垂直位置答案 0 :(得分:19)
本节介绍ANSI转义序列:
示例:
echo -en "\033[s\033[7B\033[1;34m 7 lines down violet \033[u\033[0m"
echo -en "\033[s\033[7A\033[1;32m 7 lines up green \033[u\033[0m"
本节介绍tput实用程序:
有关演示,请参阅终端中的浮动时钟:
从http://www.cyberciti.biz/tips/spice-up-your-unix-linux-shell-scripts.html获取的示例脚本:
#!/bin/bash
tput clear # clear the screen
tput cup 3 15 # Move cursor to screen location X,Y (top left is 0,0)
tput setaf 3 # Set a foreground colour using ANSI escape
echo "XYX Corp LTD."
tput sgr0
tput cup 5 17
tput rev # Set reverse video mode
echo "M A I N - M E N U"
tput sgr0
tput cup 7 15; echo "1. User Management"
tput cup 8 15; echo "2. Service Management"
tput cup 9 15; echo "3. Process Management"
tput cup 10 15; echo "4. Backup"
tput bold # Set bold mode
tput cup 12 15
read -p "Enter your choice [1-4] " choice
tput clear
tput sgr0
tput rc
答案 1 :(得分:7)
使用echo
会将您限制为特定的终端类型。最好使用tput
。
tput cup 10 4; echo there
将光标放在第10行第4列并在该位置打印“那里”。
对于更多基本动作,您需要tput cub1
向左移动,tput cuf1
向右移动,tput cuu1
向上移动,tput cud1
向下移动光标。
答案 2 :(得分:1)
是的,正如miku所指出的那样,ANSI终端逃逸,或者一个更清洁的东西应该适用于任何终端:
tput cuu 1 # move cursor up 1 position
nudgeup=`tput cuu 2` # save it for later
nudgeleft=`tput cub 2`
echo -n $nudgeup $nudgeleft
请参阅BASH提示中的ANSI部分之后的几个部分。
tput还会返回退出代码,告诉您是否支持某些内容。