#!/bin/bash

file="nowcoder.txt"
# 使用 tail 命令输出文件的最后 5 行。-n 5 表示输出最后 5 行。
tail -n 5 $file