Day 3: Basic Linux Commands - Part 2
How to view what's written in a file?
In Linux, if we want to see content in the file then we need to use the cat command.
Syntax: cat <options> <filename>
e.g. cat test1.txt
if we use cat -n it will show output with line numbers.
eg. cat -n t...
parimalpradhan.hashnode.dev3 min read