awk - move first column in file to the last column

后端 未结 0 573
[愿得一人]
[愿得一人] 2021-01-03 07:51

I am trying to move the first column of a file to be the last column in the file. This is what i have

awk -F \',\' \'{first = $1; $1=""; OFS = FS; print $0,

相关标签:
回答
  • 消灭零回复
提交回复
热议问题