我想要清楚但只执行我执行的最后一个命令。这是一个例子,你可以更好地理解它:
root@debian:~# id
uid=0(root) gid=0(root) groups=0(root)
root@debian:~# uname -a
Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.54-2 x86_64 GNU/Linux
root@debian:~#
如果那是shell的当前状态,我想执行命令(例如echo a > /tmp/foo
)并保留控制台:
root@debian:~# id
uid=0(root) gid=0(root) groups=0(root)
root@debian:~# uname -a
Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.54-2 x86_64 GNU/Linux
root@debian:~#
所以它应该像echo a > /tmp/foo && clear -n 1
(我知道很明显没有-n 1功能,它只是一个例子)。
谢谢
答案 0 :(得分:1)
要执行此操作,您需要在命令之前保存光标位置,然后在清除屏幕其余部分后恢复位置。
这样的事情应该有效:
$ hiderun() {
# Move cursor up one line.
tput cuu 1
# Save cursor position.
tput sc
# Execute the given command.
"$@"
# Restore the cursor position.
tput rc
# Clear to the end of the screen.
tput ed
}
$ id
uid=0(root) gid=0(root) groups=0(root)
$ uname -a
Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.54-2 x86_64 GNU/Linux
$ tput sc
$ hiderun do something
这可能仅适用于单行提示。多行提示可能需要将参数更改为tput cuu
。
嗯...让你的提示运行tput sc
作为第一件事可能意味着Just Works无需进行任何计数/等。游戏,但需要一些测试。