Хорошо, у меня есть способ получить список ярлыков, отфильтровав руководство по bash . Это также даст описание того, что именно делает каждый ярлык. Спасибо Sparhawk, который просветил меня, чтобы найти решение. Мне нужно было научиться использовать регулярные выражения, хотя я все еще не очень хорош в этом :)
Итак, команда из одной строки:
man bash | grep "(.-.*)$" -A1
Вот небольшое извлечение результата:
beginning-of-line (C-a)
Move to the start of the current line.
end-of-line (C-e)
Move to the end of the line.
forward-char (C-f)
Move forward a character.
backward-char (C-b)
Move back a character.
forward-word (M-f)
Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits).
backward-word (M-b)
Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and digits).
clear-screen (C-l)
Clear the screen leaving the current line at the top of the screen. With an argument, refresh the current line without clearing the
previous-history (C-p)
Fetch the previous command from the history list, moving back in the list.
next-history (C-n)
Fetch the next command from the history list, moving forward in the list.
beginning-of-history (M-<)
Move to the first line in the history.
end-of-history (M->)
Move to the end of the input history, i.e., the line currently being entered.
reverse-search-history (C-r)
Search backward starting at the current line and moving `up' through the history as necessary. This is an incremental search.
forward-search-history (C-s)
Search forward starting at the current line and moving `down' through the history as necessary. This is an incremental search.
Теперь, чтобы сохранить ярлыки в файл:
man bash | grep "(.-.*)$" -A1 > bash_shortcuts
Это все, что мне было нужно. Я просто хотел знать сочетания клавиш, назначенные bash, и я не перенастраивал какие-либо клавиши, как меня просил BroSlow .
Еще раз спасибо всем за их вклад.
Примечание :
Если кто-то хочет улучшить это, он / она приветствуется. Я только упомянул способ перечислить те сочетания клавиш, которые были назначены некоторыми клавишами. Так что, если кто-то знает, как перечислить те действия, которые не были назначены с описанием, используя этот способ , это приветствуется :)
bind -P
будет более точным.