본문 바로가기
프로그래밍

리눅스 쉘 단축키 Keyboard shortcuts for bash

by 𝓃𝒶𝓃𝒶。 2015. 4. 9.

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

'프로그래밍' 카테고리의 다른 글

-> 연산자 -> Operator  (0) 2015.04.15
OBJ(.obj) file format  (0) 2015.04.10
C++ 파일 입출력 ofstream / ifstream  (0) 2015.04.09
Eigen3 Library  (0) 2015.03.27
STL vector class  (0) 2015.03.25