linux shell awk 单引号分割

awk 单引号分割 语法如下:

awk -F ''\'''

实例如下:

content='hello'
echo $content | awk -F ''\''' '{print $1}'

输出 hello

猜你喜欢

转载自blog.csdn.net/whatday/article/details/114645214
今日推荐