在 Linux 下 在文字檔內 每一行之前 加上 行號的方法

% cat -n file.txt

file:txt
this
is
a
file

output:
1 this
2 is
3 a
4 file