一个文件1.txt,内容如下
a
b
c
d
e
目的把列变行,输出为: a b c d e
脚本如下:
awk 'BEGIN{RS="";FS="\n";OFS=" "}{print }' test
a
b
c
d
e
理论上应该实现我们想要的 a b c d e
问题出在这里
Understanding
$0
It is important to remember that It is a not-uncommon error to try to change the field separators in a record simply by setting But this does not work, since nothing was done to change the record itself. Instead, you must force the record to be rebuilt, typically with a statement such as ‘$1 = $1’, as described earlier. |
给懒得看英文的人翻译一下:
$0精确的表示你从awk输入中读到的一条记录。它包含了开头和结尾的空格及分割字段间的空格(或其它字符)
这里有一个很不寻常的错误会发生,当你通过FS或OFS改变了记录的分隔符时,而你正好想用print或print $0打印出这条记录,但是
它不会如你所愿的(正如我们上面的例子),因为这条记录没有任何改变,所以你要强制改变这条记录,方法就是 $1=$1或$2=$2或随便你想改变什么变量。
It works !
quke@Raphaelqu:/tmp$ awk 'BEGIN{RS="";FS="\n";OFS=" "}{$1=$1;print}' 1.txt
a b c d e f g
详情参考:
http://www.gnu.org/software/gawk/manual/html_node/Changing-Fields.html