- 论坛徽章:
- 0
|
本帖最后由 pipe55_cu 于 2013-03-27 11:07 编辑
- # cat mysql.txt
- *************************** 1. row ***************************
- id: 1
- name: jack
- address: 广州中三大道
- year: 2013-03-28
- *************************** 2. row ***************************
- id: 2
- name: bbb
- address: 北京中关村
- year: 2013-03-27
- *************************** 3. row ***************************
- id: 3
- name: ccc
- address: 老地方 不见不散 xx
- year: 2008-05-27
- *************************** 4. row ***************************
- id: 4
- name: ccc
- address: jjyy \ | leng leng 的
- year: 2004-01-19
- *************************** 5. row ***************************
- id: 5
- name: ddd
- address: 正则表达式 [哈哈] * &、
- year: 2006-01-19
- *************************** 6. row ***************************
- id: 6
- name: eee
- address: 笑哈哈 ,笑哈哈 。。。。 77
- year: 2008-02-13
复制代码- # mysql -uroot -ptest77 -e 'select * from tempdb.temp\G;' |sed -e 's/^\*.*//g' -e 's/.*: \(.*\)/\1/g' |awk 'BEGIN{RS="";FS="\n";OFS="\t"}{print $1,$2,$4,$3}'
- 1 jack 2013-03-28 广州中三大道
- 2 bbb 2013-03-27 北京中关村
- 3 ccc 2008-05-27 老地方 不见不散 xx
- 4 ccc 2004-01-19 jjyy \ | leng leng 的
- 5 ddd 2006-01-19 正则表达式 [哈哈] * &、
- 6 eee 2008-02-13 笑哈哈 ,笑哈哈 。。。。 77
复制代码 |
|