标签: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