13

我正在编写一个安装脚本,并希望在脚本进行时显示脚本的状态。

例子:

var1="pending"
var2="pending"
var3="pending"

print_status () {
echo "Status of Item 1 is: "$var1""
echo "Status of Item 2 is: "$var2""
echo "Status of Item 3 is: "$var3""
}

code that does something and then refreshes the
output above as the status of each variable changes.
4

5 回答 5

28

这段代码应该给你的想法:

while :; do
    echo "$RANDOM"
    echo "$RANDOM"
    echo "$RANDOM"
    sleep 0.2
    tput cuu1 # move cursor up by one line
    tput el # clear the line
    tput cuu1
    tput el
    tput cuu1
    tput el
done

使用man tput以获取更多信息。要查看功能列表,请使用man terminfo

于 2013-08-21T16:35:36.487 回答
6

我找到了现有答案中未提及的另一种解决方案。我正在为 openwrt 开发程序,tput默认情况下不可用。下面的解决方案受到Missing tputCursor Movement的启发。

- Position the Cursor:
  \033[<L>;<C>H
     Or
  \033[<L>;<C>f
  puts the cursor at line L and column C.
- Move the cursor up N lines:
  \033[<N>A
- Move the cursor down N lines:
  \033[<N>B
- Move the cursor forward N columns:
  \033[<N>C
- Move the cursor backward N columns:
  \033[<N>D

- Clear the screen, move to (0,0):
  \033[2J
- Erase to end of line:
  \033[K

- Save cursor position:
  \033[s
- Restore cursor position:
  \033[u

至于你的问题:

var1="pending"
var2="pending"
var3="pending"

print_status () {
    # add \033[K to truncate this line
    echo "Status of Item 1 is: "$var1"\033[K"
    echo "Status of Item 2 is: "$var2"\033[K"
    echo "Status of Item 3 is: "$var3"\033[K"
}

while true; do 
    print_status
    sleep 1
    printf "\033[3A"    # Move cursor up by three line
done
于 2018-12-19T04:35:08.630 回答
3

看这个:

while true; do echo -ne "`date`\r"; done

和这个:

declare arr=(
  ">...."
  ".>..."
  "..>.."
  "...>."
  "....>"
)

for i in ${arr[@]}
do
  echo -ne "${i}\r"
  sleep 0.1
done
于 2013-08-21T16:56:21.810 回答
1

您可以使用回车来更改单个状态行上的文本。

n=0
while true; do
  echo -n -e "n: $n\r"
  sleep 1
  n=$((n+1))
done

如果你能把所有的计数器放在一条线上

n=0
m=100
while true; do
  echo -n -e "n: $n  m: $m\r"
  sleep 1
  n=$((n+1))
  m=$((m-1))
done

这种技术似乎不能扩展到多行,尽管它确实比 tput 有好处,它适用于哑终端(如 Emacs shell)。

于 2013-08-21T16:41:01.983 回答
0

这并不能完全解决您的问题,但可能会有所帮助;打印每个命令执行后的状态,修改 PS1 如下:

PS1='$PS1 $( print_status )'
于 2013-08-21T16:29:53.863 回答