我有一个文件要在其中将数据打印到除第一行数据之外的另一个文件中
list.txt中的数据是
Vik
Ram
Raj
Pooja
OFA
JAL
输出应该像下面这样输出到新文件=> fd.txt中,除了第一行数据“ VIK”
Ram
Raj
Pooja
OFA
JAL
代码不起作用
find $_filepath -type d > list.txt
for i in 2 3 4 5 .. N
do
echo $i
done<list.txt >>fd.txt
答案 0 :(得分:1)
tail -n + 2从第二行开始输出最后一行。
来自https://superuser.com/questions/1071448/tail-head-all-line-except-x-last-first-lines