This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. What does the man command do? Type in man rm. How do you scroll and get out? | |
| -"man" command is for the manual in the terminal. Scrolling through you can use "Enter" and to get out press "q" | |
| 2. Look at the man page for ls. What does the -l flag do? What does the -a flag do? | |
| -"-l" is the list of files in a long detailed format. "-a" lsits all files including hidden ones. | |
| 3. How do you jump between words in the terminal? | |
| - ctrl + arrow key | |
| 4. How do you get to the end of a line in terminal? | |
| - ctrl + e | |
| 5. How do you move your cursor to the beginning in terminal? | |
| - ctrl + a |