head 命令拿到前五行,再通过通道,通过tail取出来最后一行,即第五行
head -n 5 nowcoder.txt | tail -n 1
sed 命令中的 p 子命令,打印第五行
sed -n 5p
head 从头开始打印,tail 从未开始打印,sed 从中间开始打印