shell问答7:字符排列变型

发表于:2007-07-04来源:作者:点击数: 标签:

如由:
a1
a2
b1
b2
变为
a1 b1
a2 b2

cat filename
a1
a2
a3
b1
b2
b3
c1
c2
c3
变为
a1 b1 c1
a2 b2 c2
a3 b3 c3

1.cat filename|sort -nk 1.2 | xargs -n3
2.split -ls filename;ls x*|xargs -n3|while read i;do paste $i -d' ';echo +++++++++++;done;rm x*

原文转自:http://www.ltesting.net