Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很新,正在研究变量。
我想知道如何在 head 函数中使用变量
例如,
for ((i=0; i<5; i++)) head -((1+i)) test.txt
但它显示一个错误。我怎样才能解决这个问题?
像这样的东西怎么样:
for ((i=1; i<6; i++)) do head -n$i test.txt done
请注意,我已经在 at 开始了变量i,1这样我们就不会从head (like: head: illegal line count -- 0)收到错误。您可以通过在循环中使用来访问i变量。$i
i
1
head
head: illegal line count -- 0
$i