この形式のデータをタブ区切りファイルにインポートする方法を知りたいです。
A red green
B yellow orange
C blue purple
そして、grep、貼り付け、切り取り、catなどのコマンドを使用して、次のように変換します。
A red
B yellow
C Blue
A green
B orange
C purple
ベストアンサー1
Cutと同様に、awkを使用して実行することもできます。
$ awk '{print $1,$2}' aa.txt && awk '{print $1,$3}' aa.txt
A red
B yellow
C blue
A green
B orange
C purple
# OR to send the output in a new file:
$ (awk '{print $1,$2}' aa.txt && awk '{print $1,$3}' aa.txt) >aaa.txt
違いは、awkが切り取りよりも空白を処理することです。この機能は、各行のフィールドが複数のスペースで区切られている場合に便利です。
たとえば、ファイル行A red
= 1スペースで区切られている場合、提案された切り取りソリューションも成功しますが、行= A red
3スペースである場合、切断は失敗し、awkはフィールド1と2、またはフィールド1と3を取得することに成功します。 。
更新:
コメントで提案されているように(don_crisstiのおかげで)、これは純粋なawkでも実行できます。
awk 'BEGIN{FS=OFS=" "}{z[NR]=$1FS$3; print $1,$2}END{for (i=1; i<=NR; i++){print z[i]}}' a.txt
説明する:
FS : Input Field Separator
OFS : Output Field Separator
FS=OFS=" " : input & output field separator is set to "space"
z[NR] : Creating an array with name 'z' and index the record number:
z[1] for first line, z[2] for second line , z[3] for third line
z[NR]=$1FS$3 : to each array element assign field1-FieldSeparator FS=space)-field2
So for first line the fields1=A and Fields 3=green will be stored in z[1] => equals to z[1]="A green"
print $1,$2 : Justs prints on screen 1stfield (A) and 2ndfield (red) of the current line, printed separated by OFS
When the file is finished (END) then with a for loop we print out the whole z array entries => print z[i]
For i=1 => print z[1] => prints "A green"
For i=2 => print z[2] => prints "B orange"
For i=3 => print z[3] => prints "C purple"
PS: If fields are not separated by space but by tab , then Begin section of this awk one-liner must be changed to `awk 'BEGIN {FS=OFS="\t"}....`