Files
30-seconds-of-code/blog_posts/terminal-shortcuts-cheatsheet.md
Angelos Chalaris da31e8d138 Update covers
2023-02-16 22:24:41 +02:00

1.2 KiB

title, type, tags, author, cover, excerpt, firstSeen, lastUpdated
title type tags author cover excerpt firstSeen lastUpdated
Bash Shortcuts Cheat Sheet cheatsheet webdev,bash,cheatsheet chalarangelo terminal Maximize your productivity when working with a bash or other shell terminal by using these keyboard shortcuts. 2021-04-19T12:00:00+03:00 2021-06-12T19:30:41+03:00
  • Ctrl + C Terminate the command
  • Ctrl + Z Suspend the command
  • Ctrl + A Move to the start of the line
  • Ctrl + E Move to the end of the line
  • Ctrl + F Move forward one character
  • Ctrl + B Move backward one character
  • Ctrl + U Delete from the cursor to the start of the line
  • Ctrl + K Delete from the cursor to the end of the line
  • Ctrl + W Delete from the cursor to the start of the word
  • Ctrl + D Delete the character under the cursor
  • Ctrl + H Delete the character before the cursor
  • Ctrl + T Swap the character under the cursor with the previous one
  • Ctrl + L Clear the screen