Гаразд, у мене є спосіб отримати список ярликів, фільтруючи посібник з bash . Він також дасть опис того, що саме робить кожен ярлик. Дякую Спархаку, який просвітив мене, щоб знайти рішення. Мені потрібно було навчитися вживати регулярні вирази, хоча мені все ще не вдається :)
Отже ось команда з одним рядком:
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
було б точніше.