码迷,mamicode.com
首页 > 系统相关 > 详细

linux操作系统-给文本添加 ' -单引号,一般转成CSV格式时使用

时间:2016-07-13 23:39:08      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:linux操作系统-给文本添加 ' -单引号   一般转成csv格式时使用   


[root@localhost ~]# cat 1.txt
1ms
2ms
3ms
4ms
5ms

[root@localhost ~]# cat 1.txt | awk ‘{print $1"\047"}‘
1ms‘
2ms‘
3ms‘
4ms‘
5ms‘


[root@localhost ~]# cat 1.txt | awk ‘{print $1"\047"}‘ > 2.txt
[root@localhost ~]# cat 2.txt
1ms‘
2ms‘
3ms‘
4ms‘
5ms‘


本文出自 “一葫芦酱油” 博客,请务必保留此出处http://zhushenghang.blog.51cto.com/11105203/1826078

linux操作系统-给文本添加 ' -单引号,一般转成CSV格式时使用

标签:linux操作系统-给文本添加 ' -单引号   一般转成csv格式时使用   

原文地址:http://zhushenghang.blog.51cto.com/11105203/1826078

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!