Answers for "awk column to row"

0

awk column to row

$ xargs -n1 < file1
a
b
c
1
2
3

$ xargs -n3 < file2
a b c
1 2 3
Posted by: Guest on April-02-2022

Browse Popular Code Answers by Language