Did you ever wanted to know the way to control the terminal fully?
To get to a place where you just don't want to work with UI again? because terminal is so easy?
So First you have to know all the tricks of how to make everything in the terminal so easy
Then you have to PRACTICE Like Hell!!!
So lets start with the basics and then get better.
The most useful and practical ones are:
ctrl+l - Scroll such that the current line will be the first line
ctrl+A - Jump to the begining of the line
ctrl+E - Jump to the end of the line
Just go back and forth with those two and control it perfectly.
Try to use scroll, just to see how it works.
Move between words inside the lines
After you control those two, try to go from the start to the end of the line again and again with this shortcuts:
ctrl + right-arrow-key - One word to the right. Use Alt instead of Ctrl on mac.
ctrl + left-arrow-key - One word to the left. Use Alt instead of Ctrl on mac.
Delete words relative to cursor position
alt+d - Delete the word to the right of the cursor
ctrl+w - Delete word to the left of the cursor
Go back and forth through words, and to the end and begining of the line, and delete whatever word you want, each time other word.
Do it multiple times with different lines.
Delete line relative to cursor place
ctrl+k - Delete all the line to the right of the cursor
ctrl+u - Delete all the line to the left of the cursor
Working with commands
ctrl+s - Stop command output to screen
ctrl+q - Resume suspended command
ctrl+d - Close the current terminal