Useful Linuxπ§ Terminal Keyboardβ¨οΈ Shortcut Keys To Boostπ Your Productivityπ
A threadπ§΅
Hello everyoneπ, Today I'll be doing another quick, easy to follow threadπ§΅on a few Linux terminal keyboard shortcuts keys that will help you to complete a few tasks real quick.
1. CTRL + Aβ¨οΈ
2. CTRL + Eβ¨οΈ
3. CTRL + Kβ¨οΈ
Tipπ‘Killing text will delete text, but save it so that the user can reinsert it by yanking. Similar to cut and paste except that the text is placed on a kill ring which allows for storing more than one set of text to be yanked back on to the command line.
4. CTRL + Uβ¨οΈ
5. CTRL + Wβ¨οΈ
6. CTRL + Yβ¨οΈ
7. ALT + Yβ¨οΈ
7. ALT + Bβ¨οΈ
8. ALT + Fβ¨οΈ
8. CTRL + ALT + Eβ¨οΈ
That'sπ it for today's threadπ§΅. I know it was short, but will try to make another thread on more of these terminal keyboard shortcuts.
If you enjoyed this, I write threads𧡠dissecting Linuxπ§, Securityπ, Pythonπ and Networkingπ everyday. Be sure to retweetπ, likeπ and followπ me (@xtremepentest) to catch my threads on your feed.
β’ β’ β’
Missing some Tweet in this thread? You can try to
force a refresh
Looking for a tool that simplifies API management? Introducing Apidog
Designing APIs can be complex, but tools like @ApidogHQ simplify the process. Apidog ( is a comprehensive API design-first development platform that offers numerous features to streamline API development. While many API design and management tools are available, Apidog stands out as a comprehensive solution.
Here's why Apidog is becoming the go-to platform for API design:
1. REAL API Design-first Development Platform
Apidog offers visual tools for API design, development, testing, and documentation. Its elegant UI and compatibility with OpenAPI Specification (OAS) eliminate the need for manual coding.
The platform also supports multi-branch API development, making it ideal for teams working on complex projects.
If you want to learn Linux bash scripting for FREE, open this:
1. Getting Started with Bash Scripting
Bash scripts are a series of commands written in a file that can be executed by the Bash shell. This article will cover the basics of creating and running your first Bash script. sysxplore.com/create-a-bash-β¦
2. Comments in Bash
Commenting your code is an essential practice in programming, as it helps you and others understand the purpose and functionality of each section.
In Bash scripting, comments are used to annotate your scripts, making them more readable and maintainable. This article will cover the different ways to add comments in your Bash scripts. sysxplore.com/comments-in-baβ¦
13 Linux tr command practical examples you should know as a system administrator:
The tr command short for translate, is one of the most useful command for manipulating text on the command line.
It allows you to perform useful operations such as converting lowercase characters to uppercase characters, uppercase characters to lowercase characters, character replacing, and deleting characters.
It is usually used in conjunction with other commands via piping.
Linux user management - how to add users in Linux π§΅β
The useradd command is the main tool for adding new users to a Linux system. This command allows you to quickly create a new user account and configure the user's $HOME directory structure.
The useradd command creates a user account by combining system default settings and command-line parameters.
To see the system default values on your Linux distribution, use the useradd command with the -D option: