我正在使用 cut 来消除文件的最后两个字符:
cut -c1-40 <inputfile >outfile
之前,我使用 wc 来知道文件中的字符数:
wc -c inputfile
现在我想用这些信息来编写一个shell脚本首先我得到了文件中的字符总数,然后从那个数字中减去3。我想使用变量的内容在剪切时使用它。
nc=`wc -c < $inputfile`
nc=`expr $nc - 3`
现在我想要类似的东西
cut -c1-$nc <inputfile >outfile
但它不起作用。