CodeNewbie Community 🌱

Cover image for How to Manipulate Files on the Linux Command line
Dolamu Asipa
Dolamu Asipa

Posted on

How to Manipulate Files on the Linux Command line

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.g cat book.txt. To facilitate the comparison of files that are similar but not identical, use the diff 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 the cat 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 the Esc 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.g man cat. Note that man pages use the same interface as the less command so you can navigate through both using the same key shortcuts. To open a new terminal tab (or window), press πŸ‘‰ Ctrl+Shift+T and Ctrl+Shift+N respectively. To clear your screen, type πŸ‘‰ clear or press πŸ‘‰ Ctrl-L. To exit a terminal window (or tab), press πŸ‘‰ Ctrl-D or Ctrl+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 last ls 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.g ln -f letter.doc index.html.


    The default type of link that gets created when using the ln 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 download a file from the internet, use the curl 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 and tail commands by typing πŸ‘‰ head <filename> and tail <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 in less mode; press the spacebar or Ctrl+F to move forward a page; the arrow keys to move one line up or down; Ctrl+B to move a page up; press πŸ‘‰ 1G and G 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 and N to the previous search result and to quit the less 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 using grep use the -i flag by typing πŸ‘‰ grep -i <word> <filename>. To exclude a word/string from a search term when using grep, 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 the head 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 to less 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 the sudo command.

As always, thanks for reading! πŸ‘‹ πŸ‘‹

Latest comments (0)