-1

用户从“最后一个”命令中选择要剪切的行以及要剪切的列。除了使用变量之外,还使用 ​​'tr' 来修复空格中的所有差异。我尝试了以下代码,但不知道我哪里出错了。

echo -n "What rows and columns would you like to cut: "
read before
read after
read stop
read start
last | head -n $before friend_list | tail -n $after | tr -d $start $stop
4

1 回答 1

0

听起来你想要的是这样的:

last | head -n $after | tail -n $((after-before+1)) | cut -f $start-$stop

它将last逐行$before、逐$after列输出 的子集。$start$stop

于 2013-03-05T00:30:07.547 回答