标签: bash cut
我想用“A”和“B”参数运行脚本得分并对结果应用剪切。通过以下方式:
targetTeamOffence=`sh ./score.sh A B | cut d" " -f2`
但是我错误地使用了剪切错误。
我做错了什么?
答案 0 :(得分:1)
您错过了- -d:
-
-d
targetTeamOffence=`sh ./score.sh A B | cut -d" " -f2`