
In UNIX and Linux, you can display the content of a file such as content of a text file. There are many ways to display the content.
• cat command
# cat itsiti.txt
• less command
# less itsiti.txt
• head command
# head itsiti.txt
• tail command
# tail itsiti.txt
• more command
# more itsiti.txt


