Actions

 Language:
 RSS flow:


Bash keyboard shortcuts


Move cursor on command line

    CTRL+aGo to the beginning of the line.
    CTRL+eGo to the end of the line
    CTRL+kDelete the end of the line
    CTRL+uDelete all the line
    CTRL+lClear Terminal
    CTRL+dDisconnect
    CTRL+fForward one character
    CTRL+bBack one character
    ALT+fGo to the end of the word
    ALT+bGo to the beginning of the word

History

    !!Rerun the last command
    !lRerun the last command who starts with l
    !l:pDisplay last command who starts with l
    !$Retrieve the last parameter of the previous command

 

Go Back