4

我很新,正在研究变量。

我想知道如何在 head 函数中使用变量

例如,

for ((i=0; i<5; i++))
head -((1+i)) test.txt

但它显示一个错误。我怎样才能解决这个问题?

4

1 回答 1

2

像这样的东西怎么样:

for ((i=1; i<6; i++))
do
    head -n$i test.txt
done

请注意,我已经在 at 开始了变量i1这样我们就不会从head (like: head: illegal line count -- 0)收到错误。您可以通过在循环中使用来访问i变量。$i

于 2013-04-30T17:52:30.573 回答