I found the Linux command line quite intimidating when I first started learning to code. It seemed to require extensive and comprehensive knowledge and understanding of commands and keyboard shortcuts. However, as I read more about it and practiced what I learned, I realized that it isn't as scary as it seemed; that It only requires a lot of constant practice. I also discovered that others feel the same way, which made me realize that I wasn't alone.
The other thing I discovered during this period is that we are all beginners and sharing is helpful, since no one is an island. So I decided to share my experience with others starting out as well. As we all know, learning is never-ending. There will always be new tools and new commands to learn, especially when you're a beginner. The following tips have helped me navigate through files and directories on the command line. 👇
Manipulating Files and Directories
- 
To print a string of characters to your screen, use the
echocommand by typing 👉echo <string>e.g.echo Hello world. To print without a newline being inserted, use the-noption as follows; type 👉echo -n <string>. To print a string of characters to a file without using a text editor, use the redirect operator>. 👉echo "string" > filenamee.g.echo "this prints to file" > index.html. - 
To add a new string of characters to the next line of the same file, use the append operator
>>. 👉echo "string" >> filename. To dump the contents of a file to your screen, use thecatcommand: 👉cat <filename>e.gcat book.txt. To facilitate the comparison of files that are similar but not identical, use thediffcommand: 👉diff <filename1><filename2>. - 
Note that when there is no difference between two files,
diffsimply outputs nothing. To dump the contents of a file (or to combine the contents of multiple files) into a separate one, direct the output of thecatcommand to the new file using the redirect>operator:👉
cat filename(s) > newfile. - 
To abort the current task and regain user-control of the terminal, press 👉
Ctrl-C. If this command fails, hit theEsckey. To be able to move quickly within the command line, press 👉Ctrl-Ato get to the beginning of the line;Ctrl-Eto get to the end of the line and;Ctrl-Uto clear the entire line and start over. - 
To learn more about a command: 👉
man <command name>e.gman cat.Note that
manpages use the same interface as thelesscommand so you can navigate through both using the same key shortcuts. To open a new terminal tab (or window): 👉Ctrl+Shift+TandCtrl+Shift+Nrespectively. To clear your screen: 👉clearorCtrl-L. To exit a terminal window (or tab): 👉Ctrl-DorCtrl+Shift+Wor type 👉exit. - 
To run the previous command exactly as written, use the exclamation point
!(pronounced bang) and type!!. Another way to repeat previous commands is by typing!followed by a character (or a number of characters), which runs the last command that started with those characters. For example, to run the lastlscommand issued, type 👉! l. Another powerful technique is to enter 👉Ctrl+R. This allows you to search interactively through your previous commands, and then optionally edit the result before executing. - 
To create a hard link to a file; use the
lncommand by first typing the name of the file you want to link to (i.e the source file), followed by the name of the linked file you want to create (i.e the target) for example 👉ln letter.doc book.doc. To force a link (say, to an existing file) (or to execute a command without having to confirm it) use the-fflagln -f letter.doc index.html.The default type of link that gets created when using the
lncommand is the hard link. Hard links create an identical copy of the linked file on disk, that gets updated automatically as the source file is updated. However, this type of link does not work for directories. - 
To create a link to a directory, use the
-sflag to create a symbolic link. This flag can also be used for linking to files as well, not just directories for example:ln -s letter.doc index.html. Symbolic links can also link to files or directories on other file systems. File systems refer to directories and files. 
Inspecting Files and Directories
- 
To open a file or a directory or access a URL, type 👉
xdg-open <filename>/<directory>/<URL>. To download a file from the internet, use thecurlutility which allows you to interact with URLs on the command line; 👉curl -OL <URL>. To fetch the HTTP header of a site, type 👉curl -I <URL>. - 
To view the beginning and end of a file, use the
headandtailcommands by typing👉
head <filename>andtail <filename>respectively. They show the first and last 10 lines of the file, as applicable. To print the first n lines of a file (instead of the first 10):👉
head -n <number> <filename>. - 
To count the number of lines in a file, type 👉
wc <filename>. The output shows three separate figures, indicating the number of lines, words, and bytes in the file. To view a file that is actively changing, type 👉tail -f <filename>. This command is mostly executed when monitoring files used to log the activity of web servers for instance, in a practice known as 'tailing the log file'. - 
To easily navigate through the contents of a large file, use 👉 the
lesscommand for example type 👉less <filename>. While inlessmode; press thespacebarorCtrl+Fto move forward a page; thearrow keysto move one line up or down;Ctrl+Bto move a page up; press 👉1GandGto move to the beginning and end of the file respectively (to go directly to a specific line, type 👉<linenumber>G); to search through the file for a string/word, use the forward slash key/, e.g. type 👉/<word>; press 👉nto move to the next search result andNto the previous search result and to quit thelesscommand, press 👉q. - 
To search directly for a word/string in a file, use the
grepcommand: 👉grep <word> <filename>. To search for a word/string in a file when you aren't sure where the file is, use the-rflag: 👉grep -r <word>. To perform a case-insensitive search usinggrepuse the-iflag by typing 👉grep -i <word> <filename>. - 
To exclude a word/string from a search term when using
grep, use the-voption as follows 👉grep <search term> <filename> | grep -v <word>. To find the line number(s) in a file where a word appears: 👉grep -n <word> <filename>. To print the first 'n' lines of a search result, pipe to theheadcommand as follows 👉grep -i <word> <filename> | head <-n>. - 
To count the number of lines containing references to a search term/string, use the pipe
|and word countwccommands as follows 👉grep <word> <filename> | wc. To print the history of commands you have previously executed in your terminal shell, use thehistorycommand and pipe|it tolessas follows 👉history | less. To execute a specific command in your command history, type 👉!nwhere n represents the command number e.g. the 43rd command in your history.Lastly, use the
sudocommand to modify system files or directories and execute tasks as root. 
As always, thanks for reading! 👋 👋
First Published here
