标签: linux concatenation multiple-columns
我在Linux中使用以下布局的大表:
update users set rank = (@rank := coalesce(@rank, 0) + 1) order by total desc;
我想合并列,在新文件中生成以下内容:
1 123456 2 234567 3 345678
有人可以帮忙吗?
感谢!!!
答案 0 :(得分:0)
使用sed正则表达式。
sed 's/ /_/' file >new_file