sh Bash快捷方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash快捷方式相关的知识,希望对你有一定的参考价值。

echo "
# 0. Shortcuts.
 
 
CTRL+A  # move to beginning of line
CTRL+B  # moves backward one character
CTRL+C  # halts the current command
CTRL+D  # deletes one character backward or logs out of current session, similar to exit
CTRL+E  # moves to end of line
CTRL+F  # moves forward one character
CTRL+G  # aborts the current editing command and ring the terminal bell
CTRL+J  # same as RETURN
CTRL+K  # deletes (kill) forward to end of line
CTRL+L  # clears screen and redisplay the line
CTRL+M  # same as RETURN
CTRL+N  # next line in command history
CTRL+O  # same as RETURN, then displays next line in history file
CTRL+P  # previous line in command history
CTRL+R  # searches backward
CTRL+S  # searches forward
CTRL+T  # transposes two characters
CTRL+U  # kills backward from point to the beginning of line
CTRL+V  # makes the next character typed verbatim
CTRL+W  # kills the word behind the cursor
CTRL+X  # lists the possible filename completefions of the current word
CTRL+Y  # retrieves (yank) last item killed
CTRL+Z  # stops the current command, resume with fg in the foreground or bg in the background
 
DELETE  # deletes one character backward
!!      # repeats the last command
exit    # logs out of current session
"

以上是关于sh Bash快捷方式的主要内容,如果未能解决你的问题,请参考以下文章

sh bash快捷方式,用于在指定目录下的所有文件中查找和替换字符串

运行 Git Bash 脚本的 Windows 快捷方式

ubuntu中/bin/bash与/bin/sh,区别较大吗

基于docker安装superset

无法修改 git bash Windows 快捷方式

Bash 常用快捷方式