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 realise 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 will help you navigate through files and directories on the command line. ๐
Manipulating Files and Directories
to print a string of characters to your screen, use the
echo
command by typing ๐echo <string>
e.g.echo Hello world
. To print without a newline being inserted, use the-n
option as follows; type ๐echo -n <string>
. To print a string of characters to a file without using a text editor, use the redirect operator>
by typing ๐echo "string" > filename
e.g.echo "this prints to file" > index.html
. To add a new string of characters to the next line of same file, use the append operator>>
and type ๐echo "string" >> filename
.to dump the contents of a file to your screen, use the
cat
command and type ๐cat <filename>
e.gcat book.txt
. To facilitate the comparison of files that are similar but not identical, use thediff
command, type ๐diff <filename1> <filename2>
. Note that when there is no difference between two files,diff
simply 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 thecat
command to the new file using the redirect>
operator, type ๐cat filename(s) > newfile
.to abort the current task and regain user-control of the terminal, press ๐
Ctrl-C
. If this command fails, hit theEsc
key. To be able to move quickly within the command line, press ๐Ctrl-A
to get to the beginning of the line;Ctrl-E
to get to the end of the line and;Ctrl-U
to clear the entire line and start over.to learn more details about a command, type ๐
man <command name>
e.gman cat
. Note thatman
pages use the same interface as theless
command so you can navigate through both using the same key shortcuts. To open a new terminal tab (or window), press ๐Ctrl+Shift+T
andCtrl+Shift+N
respectively. To clear your screen, type ๐clear
or press ๐Ctrl-L
. To exit a terminal window (or tab), press ๐Ctrl-D
orCtrl+Shift+W
or 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 number of characters), which runs the last command that started with those characters. For example, to run the lastls
command issued, type ๐! l
. Another powerful technique is to press ๐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
ln
command 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-f
flag e.gln -f letter.doc index.html
.
The default type of link that gets created when using theln
command 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
-s
flag 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
to open a file or a directory or access a URL, type ๐
xdg-open <filename>/<directory>/<URL>
. To use an application to open a file, type the application name followed by the file name. For example,google-chrome
orcode
(for VS Code) thenindex.html
. To download a file from the internet, use thecurl
utility which allows you to interact with URLs at the command line; type ๐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
head
andtail
commands by typing ๐head <filename>
andtail <filename>
respectively. They show the first and last 10 lines of the file, as aplicable. To print the first n lines of a file (instead of the first 10), type ๐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
less
command for example type ๐less <filename>
. While inless
mode; press thespacebar
orCtrl+F
to move forward a page; thearrow keys
to move one line up or down;Ctrl+B
to move a page up; press ๐1G
andG
to 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 ๐n
to move to the next search result andN
to the previous search result and to quit theless
command, press ๐q
.to search directly for a word/string in a file, use the
grep
command, type ๐grep <word> <filename>
. To search for a word/string in a file when you aren't sure where the file is, use the-r
flag and type ๐grep -r <word>
.To perform case-insensitive search usinggrep
use the-i
flag by typing ๐grep -i <word> <filename>
. To exclude a word/string from a search term when usinggrep
, use the-v
option as follows ๐grep <search term> <filename> | grep -v <word>
.to find the line number(s) in a file where a word appears, type ๐
grep -n <word> <filename>
. To print the first 'n' lines of a search result, pipe to thehead
command 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 countwc
commands as follows ๐grep <word> <filename> | wc
.to print the history of commands you have previously executed in your terminal shell, use the
history
command and pipe|
it toless
as follows ๐history | less
. To execute a specific command in your command history, type ๐!n
where n represents the command number e.g. the 43rd command in your history.
Lastly, to modify system files or directories and execute tasks as root, use thesudo
command.
As always, thanks for reading! ๐ ๐