001、双引号
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 1 2 3 4 5 [root@PC1 test]# awk '{print $0, "\""}' a.txt ## 输出双引号 1 " 2 " 3 " 4 " 5 "
002、单引号
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 1 2 3 4 5 [root@PC1 test]# awk '{print $0, "'\''"}' a.txt ## 输出单引号 1 ' 2 ' 3 ' 4 ' 5 '
标签:单引号,PC1,awk,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17395485.html