我有一个看起来像这样的列表:
sharename:shareX
comment:commentX
sharename:shareY
comment:commentY
sharename:shareZ
comment:commentZ
等等...
这就是我希望列表的样子:
shareX;commentX
shareY;commentY
shareZ;commentZ
我怎样才能在 bash 中做到这一点?
我有一个看起来像这样的列表:
sharename:shareX
comment:commentX
sharename:shareY
comment:commentY
sharename:shareZ
comment:commentZ
等等...
这就是我希望列表的样子:
shareX;commentX
shareY;commentY
shareZ;commentZ
我怎样才能在 bash 中做到这一点?
纯重击:
IFS=':'
while read a b; read c d; do # read 2 lines
echo -e "$b:$d"
done < "$infile"
一个班轮:
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
未经测试,sed 部分可能是错误的
paste -d ';' - - < filename | sed -r 's/(^|;)[^:]:/\1/g'
这可能对您有用:
sed '$!N;s/[^:]*:\([^\n]*\)\n[^:]*:/\1;/' file
shareX;commentX
shareY;commentY
shareZ;commentZ