From 2ec985f98fd2b29c637c77e0baf2877e56629274 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Mon, 19 Apr 2021 05:00:00 -0400 Subject: [PATCH] Add bash cheat sheet --- blog_posts/terminal-shortcuts-cheatsheet.md | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 blog_posts/terminal-shortcuts-cheatsheet.md diff --git a/blog_posts/terminal-shortcuts-cheatsheet.md b/blog_posts/terminal-shortcuts-cheatsheet.md new file mode 100644 index 000000000..d3497b0e7 --- /dev/null +++ b/blog_posts/terminal-shortcuts-cheatsheet.md @@ -0,0 +1,25 @@ +--- +title: Bash Shortcuts Cheat Sheet +type: cheatsheet +tags: webdev,bash,cheatsheet +authors: chalarangelo +cover: blog_images/terminal.jpg +excerpt: Maximize your productivity when working with a bash or other shell terminal by using these keyboard shortcuts. +--- + +- 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 + + +**Image credit:** [Tracy Adams](https://unsplash.com/@tracycodes?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)