#!/bin/bash

# 全ての行を標準出力に出力する
cat $file

# 最初の3行を出力する
head -n 3 $file

# 最後の3行を出力する
tail -n 3 $file

# 3行目から出力する
tail -n +3 $file

# 最後の3行を飛ばして出力する
head -n -3 $file

# 書き出し中のファイルについて、出力された部分を順次標準出力に表示する
tail -f $file