0

我有一个看起来像这样的列表:

sharename:shareX
comment:commentX
sharename:shareY
comment:commentY
sharename:shareZ
comment:commentZ

等等...

这就是我希望列表的样子:

shareX;commentX
shareY;commentY
shareZ;commentZ

我怎样才能在 bash 中做到这一点?

4

4 回答 4

2

纯重击:

IFS=':'
while read a b; read c d; do   # read 2 lines
  echo -e "$b:$d"
done < "$infile"
于 2012-04-27T11:32:53.463 回答
1

一个班轮:

odd=0; for i in `cat list | cut -d":" -f2`; do if [ $odd -eq 0 ]; then echo -ne $i; odd=1; else echo $i; odd=0; fi; done

格式化:

odd=0; 
for i in `cat list | cut -d":" -f2`; 
do 
    if [ $odd -eq 0 ]; 
    then 
        echo -ne $i";"; 
        odd=1; 
    else 
        echo $i; 
        odd=0; 
    fi; 
done
于 2012-04-27T10:10:40.700 回答
0

未经测试,sed 部分可能是错误的

paste -d ';' - - < filename | sed -r 's/(^|;)[^:]:/\1/g'
于 2012-04-27T12:01:58.177 回答
0

这可能对您有用:

sed '$!N;s/[^:]*:\([^\n]*\)\n[^:]*:/\1;/' file
shareX;commentX
shareY;commentY
shareZ;commentZ
于 2012-04-27T14:56:56.330 回答