Skip to content

Instantly share code, notes, and snippets.

@panpf
Created May 10, 2019 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panpf/564a2ea910e3f5afb43f7075ac1c6218 to your computer and use it in GitHub Desktop.
Save panpf/564a2ea910e3f5afb43f7075ac1c6218 to your computer and use it in GitHub Desktop.
shell 转义字符串中的双引号
originParams='"hello world"'
originParamsFormatted=`echo ${originParams//'"'/'\"'}` # 输出结果 \"hello world\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment