- Ctrl + e : jump cursor to EOL
- Ctrl + a : jump cursor to BOL (beginning of line)
- Ctrl + u : delete all from cursor to BOL
- Ctrl + k : delete all from cursor to EOL
- Ctrl + r : search history, press again for next search
- Ctrl + l : clear shell screen
- Ctrl + c : terminate the command (sometimes have to press twice)
- Ctrl + z : suspend the command, back to shell. Run
fg
to resume the command
#TIL : Bash shell shortcuts
You may also like (related posts)
#TIL : Make cron job runs every seconds
#TIL : Make cron job runs every seconds
I learned on 2018-11-15 about bash, cron, linux
#TIL : Telnet server through SSL or TLS
#TIL : Telnet server through SSL or TLS
I learned on 2018-11-13 about bash, openssl, tls
#TIL : The safest way to reset root password of MySQL Server
#TIL : The safest way to reset root password of MySQL Server
I learned on 2018-08-25 about database, mysql, security, sysadmin
#TIL : Curl override Name Resolution with specific IP address
#TIL : Curl override Name Resolution with specific IP address
I learned on 2018-08-18 about curl, dns, sysadmin
#TIL : Curl extract info from verbose mode
#TIL : Curl extract info from verbose mode
I learned on 2018-08-07 about bash, curl
Latest posts
Weighted Round Robin : Scheduling Algorithm
#TIL : Becareful on using port mapping of Docker in Development
#TIL : Becareful on using port mapping of Docker in Development
I learned on 2022-03-17 about docker, security
#TIL : Using extra hosts to add custom ip of hostnames to Docker container
#TIL : Using extra hosts to add custom ip of hostnames to Docker container
I learned on 2022-03-16 about docker, networking
#TIL : Laravel run scheduled command within parent environment
#TIL : Laravel run scheduled command within parent environment
I learned on 2022-03-15 about cronjob, laravel, php