如何删除光标后的所有内容?
How to delete everything after the cursor?
我想删除光标后的所有内容;不仅是当前行,还有当前位置之后的每个剩余字符。
例如tput sc; ll; tput rc
:
root@test:~# tput sc; ll; tput rc
root@test:~# {CURRENT_CURSOR_POSITION}
drwx------ 5 root root 4096 Feb 23 16:34 ./
drwxr-xr-x 25 root root 4096 Jul 1 2021 ../
-rw------- 1 root root 59 Feb 23 16:34 .bash_history
-rw-r--r-- 1 root root 3106 Dec 5 2019 .bashrc
drwxr-xr-x 3 root root 4096 Feb 8 17:07 .local/
-rw-r--r-- 1 root root 161 Dec 5 2019 .profile
drwxr-xr-x 3 root root 4096 Jun 21 2021 snap/
drwx------ 2 root root 4096 Feb 22 11:56 .ssh/
-rw------- 1 root root 12976 Feb 8 17:07 .viminfo
这会将光标留在第二行,并保留 ll
的输出。
我正在寻找方法
使用 tput el
删除每一行,直到到达保存的位置,因此命令链为:tput sc; ll; while_deleting; tput rc
。这可能会为每一行调用 tput el
,这似乎是多余的,但应该没问题。
在回到保存的位置后删除所有内容。
我查看了很多答案,例如 how to delete all characters after cursor in shell, Bash: delete from cursor till end of line with a keyboard shortcut 等,但所有答案都集中在删除当前行,而不是其余部分。
tput cd
cd
Clear to end of display (*)
https://www.gnu.org/software/termutils/manual/termutils-2.0/html_chapter/tput_1.html#SEC8
我想删除光标后的所有内容;不仅是当前行,还有当前位置之后的每个剩余字符。
例如tput sc; ll; tput rc
:
root@test:~# tput sc; ll; tput rc
root@test:~# {CURRENT_CURSOR_POSITION}
drwx------ 5 root root 4096 Feb 23 16:34 ./
drwxr-xr-x 25 root root 4096 Jul 1 2021 ../
-rw------- 1 root root 59 Feb 23 16:34 .bash_history
-rw-r--r-- 1 root root 3106 Dec 5 2019 .bashrc
drwxr-xr-x 3 root root 4096 Feb 8 17:07 .local/
-rw-r--r-- 1 root root 161 Dec 5 2019 .profile
drwxr-xr-x 3 root root 4096 Jun 21 2021 snap/
drwx------ 2 root root 4096 Feb 22 11:56 .ssh/
-rw------- 1 root root 12976 Feb 8 17:07 .viminfo
这会将光标留在第二行,并保留 ll
的输出。
我正在寻找方法
使用
tput el
删除每一行,直到到达保存的位置,因此命令链为:tput sc; ll; while_deleting; tput rc
。这可能会为每一行调用tput el
,这似乎是多余的,但应该没问题。在回到保存的位置后删除所有内容。
我查看了很多答案,例如 how to delete all characters after cursor in shell, Bash: delete from cursor till end of line with a keyboard shortcut 等,但所有答案都集中在删除当前行,而不是其余部分。
tput cd
cd
Clear to end of display (*)
https://www.gnu.org/software/termutils/manual/termutils-2.0/html_chapter/tput_1.html#SEC8