からダウンロードしたファイルを解凍してください:
http://s.yunio.com/MT3r2x
データ形式:
‘x + y’ x plus y
‘x - y’ x minus y
‘x*y’ juxtapose x and y
‘x/y’ x forwardslash y
‘x %+-% y’ x plus or minus y
為に
cut -c 1-43 maths.txt
出力は次のとおりです。
‘x + y’
‘x - y’
‘x*y’
‘x/y’
‘x %+-% y’
為に
cut -c 44- maths.txt
出力は次のとおりです。
x plus y
x minus y
juxtapose x and y
x forwardslash y
x plus or minus y
2つのフィールドは、私が取得したいものです。
次のコマンドを使用して 2 つのフィールドに分割できないのはなぜですか?
cut -d' ' -f2 maths.txt
または cut -d' ' -f2 maths.txt(ctrl+v+tab)
どちらもできません。