web-dev-qa-db-fra.com

Utilisation des raccourcis clavier avec bash sur macOS

J'essayais d'apprendre les raccourcis clavier pour le shell sous MacOS, mais lorsque j'ai essayé d'utiliser ALT+B, cela n'a pas fonctionné.

Comment découvrir, configurer et utiliser les associations de touches dans le shell? Toute aide-mémoire serait utile.

51
Open the way

Une façon de traiter les séquences de touches "méta" qui ne fonctionnent pas sur le terminal OS X consiste à affecter des séquences de caractères spécifiques à des pressions de touche particulières. Pour ceux d'entre nous qui possèdent des claviers non américains, il s'agit souvent d'une meilleure solution que le paramètre "Utiliser l'option en tant que méta" mentionné dans les commentaires d'autres réponses. (De nombreux claviers Mac internationaux sont essentiellement inutilisables pour des travaux de développement sans la touche Option/Alt, car certains caractères critiques sont par ailleurs indisponibles. # sur un clavier britannique, par exemple.)

Pour que Word-left et Word-right fonctionnent pour bash, j'ai utilisé la section "Clavier" des Paramètres du terminal. Vous pouvez lui indiquer de générer des séquences de code particulières lorsque des pressions de touche particulières sont effectuées. J'ai le mien configuré pour que alt+ génère \033b (en fait deux caractères: Esc, puis un b minuscule) et alt+ génère \033f (c'est-à-dire Esc f). Cela vous permet d'utiliser les touches de direction avec la touche d'option enfoncée pour obtenir le comportement de gauche à droite de Word.

Ce que je n’ai pas encore déterminé, c’est comment obtenir le Esc clé du travail - en théorie, vous devriez pouvoir l’utiliser pour les séquences "méta", mais cela ne semble pas fonctionner. (Donc il suffit de taper Esc+b devrait revenir en arrière d'un mot.)

Si vous avez une disposition de clavier américaine ou un autre clavier dans lequel Apple a jugé bon de fournir toutes les touches dont vous avez réellement besoin, alors, comme d'autres l'ont suggéré, "Utilisez l'option comme clé méta" (également dans la section Clavier des paramètres du terminal). est probablement un meilleur choix car vous pourrez obtenir n'importe quelle combinaison de méta-clés. Avec ça allumé, Alt+b fonctionne comme prévu.

12
Ian Griffiths

Le terminal de Mac OS X est BASH, voici quelques raccourcis BASH:

Ctrl + A    Go to the beginning of the line you are currently typing on
Ctrl + E    Go to the end of the line you are currently typing on
Ctrl + L    Clears the Screen, similar to the clear command
Ctrl + U    Clears the line before the cursor position. If you are at the end of the line, clears the entire line.
Ctrl + H    Same as backspace
Ctrl + R    Let’s you search through previously used commands
Ctrl + C    Kill whatever you are running
Ctrl + D    Exit the current Shell
Ctrl + Z    Puts whatever you are running into a suspended background process. fg restores it.
Ctrl + W    Delete the Word before the cursor
Ctrl + K    Clear the line after the cursor
Ctrl + T    Swap the last two characters before the cursor
Esc + T  Swap the last two words before the cursor
Alt + F  Move cursor forward one Word on the current line
Alt + B  Move cursor backward one Word on the current line
Tab      Auto-complete files and folder names

Celui que vous recherchez est Ctrl + H. (Cela revient à appuyer sur la touche Retour arrière)

Si vous recherchez un caractère d'échappement pour remonter d'un caractère, vous recherchez \b. Un péché:

$ echo -e "one two\b\b\b\b three" # Will echo "one three"
80
Arko

Sur mon mac britannique, ALT + curseur gauche/droite avance/recule d’un mot. Absolument essentiel.

10
jmoz

Essayez SS64. Ce site Web est tout simplement idéal pour les références en ligne de commande.

Raccourcis clavier CLI OS X tels qu'ils sont extraits de de cette page SS64.

Bash Keyboard Shortcuts

Moving the cursor:
  Ctrl + a   Go to the beginning of the line (Home)
  Ctrl + e   Go to the End of the line (End)
  Ctrl + p   Previous command (Up arrow)
  Ctrl + n   Next command (Down arrow)
   Alt + b   Back (left) one Word
   Alt + f   Forward (right) one Word
  Ctrl + f   Forward one character
  Ctrl + b   Backward one character
  Ctrl + xx  Toggle between the start of line and current cursor position

Editing:
 Ctrl + L   Clear the Screen, similar to the clear command
 Ctrl + u   Cut/delete the line before the cursor position.
  Alt + Del Delete the Word before the cursor.
  Alt + d   Delete the Word after the cursor.
 Ctrl + d   Delete character under the cursor
 Ctrl + h   Delete character before the cursor (backspace)
 Ctrl + w   Cut the Word before the cursor to the clipboard.
 Ctrl + k   Cut the Line after the cursor to the clipboard.
  Alt + t   Swap current Word with previous
 Ctrl + t   Swap the last two characters before the cursor (typo).
 Esc  + t   Swap the last two words before the cursor.
 Ctrl + y   Paste the last thing to be cut (yank)
  Alt + u   UPPER capitalize every character from the cursor to the end of the current Word.
  Alt + l   Lower the case of every character from the cursor to the end of the current Word.
  Alt + c   Capitalize the character under the cursor and move to the end of the Word.
  Alt + r   Cancel the changes and put back the line as it was in the history (revert).
 Ctrl + _   Undo

 TAB        Tab completion for file/directory names
For example, to move to a directory 'sample1'; Type cd sam ; then press TAB and ENTER. 
type just enough characters to uniquely identify the directory you wish to open.

History:
  Ctrl + r   Recall the last command including the specified character(s)
             searches the command history as you type.
             Equivalent to : vim ~/.bash_history. 
  Ctrl + p   Previous command in history (i.e. walk back through the command history)
  Ctrl + n   Next command in history (i.e. walk forward through the command history)
   Alt + .   Use the last Word of the previous command
  Ctrl + s   Go back to the next most recent command.
            (beware to not execute it from a terminal because this will also launch its XOFF).
  Ctrl + o   Execute the command found via Ctrl+r or Ctrl+s
  Ctrl + g   Escape from history searching mode

Process control:
 Ctrl + C   Interrupt/Kill whatever you are running (SIGINT)
 Ctrl + l   Clear the screen
 Ctrl + s   Stop output to the screen (for long running verbose commands)
 Ctrl + q   Allow output to the screen (if previously stopped using command above)
 Ctrl + D   Send an EOF marker, unless disabled by an option, this will close the current Shell (EXIT)
 Ctrl + Z   Send the signal SIGTSTP to the current task, which suspends it.
            To return to it later enter fg 'process name' (foreground).

Emacs mode vs Vi Mode    
All the above assume that bash is running in the default Emacs setting, if you prefer this can be switched to Vi shortcuts instead.

Set Vi Mode in bash:
$ set -o vi

Set Emacs Mode in bash:    
$ set -o emacs

Remarque: Pour utiliser les raccourcis clavier Alt Key >> Ouvrir les préférences du terminal >> onglet Paramètres >> Clavier >> Cochez "Utiliser l'option en tant que clé méta"

Terminal Preferences

6
Rahul Thakur

Vous voulez que la section READLINE de la page de manuel bash(1):

man 1 bash
/^READLINE
2

Il n'y a vraiment pas besoin de cartographier le option clé de méta, dans un terminal OS X, option+left-arrowoption+right-arrow remplace Alt+F et Alt+B respectivement. Les autres raccourcis couramment utilisés fonctionnent tous de la même manière que sur les autres plates-formes. esc peut émuler la fonctionnalité d'origine de la Alt clé, mais il peut être un peu mal à l'aise d'utiliser esc en tant que modificateur, plus vous ne pouvez pas tenir esc et appuyez plusieurs fois sur B ou F, vous devez le laisser monter et le repousser à chaque fois.

TL; DR

option+left-arrow = en arrière un mot

option+right-arrow = transmettre un mot

1
Dan Robson

Mon profil pourrait vous intéresser: https://github.com/lingtalfi/mac-terminal-shortcuts

Il fournit les raccourcis suivants (intuitifs):

ALT-left: move one Word backward
ALT-right: move one Word forward
CTRL-left: move to the beginning of the line
CTRL-right: move to the end of the line
ALT-backspace: kill one Word backward
ALT-del: kill one Word forward
ALT-up: set Word after cursor to uppercase
ALT-down: set Word after cursor to lowercase
CTRL-backspace: Same as ALT-backspace
CTRL-del: Same as ALT-del
home: move to the beginning of the line
end: move to the end of the line
0
ling