如何从文件x中读取文件到bash文件的末尾

我想知道如何从bash脚本中的第二行到文件末尾读取每一行csv文件

我知道如何在bash中读取一个文件

while read line
 do   
   echo -e "$line\n"
done < file.csv

但是,我想从第二行开始到文件的末尾读取文件。我该如何实现?

tail -n +2 file.csv

man page

-n,--lines=N
     output the last N lines,instead of the last 10
...

If the first character of N (the number of bytes or lines)  is  a  '+',print  beginning with the Nth item from the start of each file,other-
wise,print the last N items in the file.

用英语说明:

tail -n 100打印最后100行

tail -n 100打印从行100开始的所有行

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...