- Screencast Terminal
Displaying the contents of a file
clear (clear screen)
Before you start the next section, you may like to clear the terminal window of the previous commands so the output of the following commands can be clearly understood.
At the prompt, type clear
. This will clear all text and leave you with the prompt at the top of the window.
cat (concatenate)
The command cat
can be used to display the contents of a file on the screen. Type: cat file
if the file is longer than than the size of the window, so it scrolls past making it unreadable.
cat /etc/passwd
Input
Output
xxxxxxxxxx
head
The head
command writes the first ten lines of a file to the screen.
head /usr/local/data/auto.csv
Input
Output
xxxxxxxxxx
By default the head
command will only print the first few (10) lines, if you want more pass the command with option e.g, head -n 20 file.
tail
The tail
command writes the last ten lines of a file to the screen. It will take similar options as the head
.
tail -n 50 /usr/local/data/auto.csv
Input
Output
xxxxxxxxxx