How to escape quotes in shell?

371,505

Solution 1

You can use the following string literal syntax:

> echo $'\'single quote phrase\' "double quote phrase"'
'single quote phrase' "double quote phrase"

From man bash

Words of the form $'string' are treated specially. The word expands to string, with backslash-escaped characters replaced as specified by the ANSI C standard. Backslash escape sequences, if present, are decoded as follows:

          \a     alert (bell)
          \b     backspace
          \e
          \E     an escape character
          \f     form feed
          \n     new line
          \r     carriage return
          \t     horizontal tab
          \v     vertical tab
          \\     backslash
          \'     single quote
          \"     double quote
          \nnn   the eight-bit character whose value is the octal value nnn (one to three digits)
          \xHH   the eight-bit character whose value is the hexadecimal value HH (one or two hex digits)
          \cx    a control-x character

Solution 2

Simple example of escaping quotes in shell:

$ echo 'abc'\''abc'
abc'abc
$ echo "abc"\""abc"
abc"abc

It's done by finishing already opened one ('), placing escaped one (\'), then opening another one (').

Alternatively:

$ echo 'abc'"'"'abc'
abc'abc
$ echo "abc"'"'"abc"
abc"abc

It's done by finishing already opened one ('), placing quote in another quote ("'"), then opening another one (').

Related: How to escape single-quotes within single-quoted strings? at stackoverflow SE

Solution 3

In a POSIX shell, assuming in your string there is no variable, command or history expansion, and there is no newline, follow these basic prescriptions:

  1. To quote a generic string with single quotes, perform the following actions:

    1. Substitute any sequence of non-single-quote characters with the same sequence with added leading and trailing single quotes: 'aaa' ==> ''aaa''

    2. Escape with a backslash every preexisting single quote character: ' ==> \'
      In particular, ''aaa'' ==> \''aaa'\'

  2. To quote a generic string with double quotes, perform the following actions:

    1. Add leading and trailing double quotes: aaa ==> "aaa"

    2. Escape with a backslash every double quote character and every backslash character: " ==> \", \ ==> \\

A couple of examples:

''aaa""bbb''ccc\\ddd''  ==>  \'\''aaa""bbb'\'\''ccc\\ddd'\'\'
                        ==>  "''aaa\"\"bbb''ccc\\\\ddd''"

so that you example could be expanded with the following:

#!/bin/sh

echo \''aaa'\'' "bbb"'
echo "'aaa' \"bbb\""

sudo su enzotib -c 'echo \'\'\''aaa'\''\'\'\'' "bbb"'\'
sudo su enzotib -c 'echo "'\''aaa'\'' \"bbb\""'

sudo su enzotib -c "echo \\''aaa'\\'' \"bbb\"'"
sudo su enzotib -c "echo \"'aaa' \\\"bbb\\\"\""

Solution 4

Simple

Remove double quotes by piping your output to sed

sed 's/"//g'

Example

somethingThatProducesDoubleQuotesHere | removeDoubleQuotes

Or you could use a method to make life easier in the future

removeDoubleQuotes() {
  sed 's/"//g'
  # EXAMPLES:
  # somethingThatProducesDoubleQuotesHere | removeDoubleQuotes
}
Share:
371,505

Related videos on Youtube

m33lky
Author by

m33lky

Updated on September 18, 2022

Comments

  • m33lky
    m33lky almost 2 years

    I'm having trouble with escaping characters in bash. I'd like to escape single and double quotes while running a command under a different user. For the purposes of this question let's say I want to echo the following on the screen:

    'single quote phrase' "double quote phrase"
    

    How can I escape all the special chars, if I also need to switch to a different user:

    sudo su USER -c "echo \"'single quote phrase' \"double quote phrase\"\""
    

    Of course, this doesn't produce the right result.

    • Admin
      Admin over 3 years
      ... except it DOES work as expected, you have to escape quotes 2 times since your string is nested within other string. It would work the same in any other programming language: bash -c "echo \"'single quote phrase' \\\"double quote phrase\\\"\""
  • mj41
    mj41 about 6 years
  • Admin
    Admin almost 4 years
    This quote function is amazing! It can be used in scripts to do arbitrarily deep quoting without being exponentially uglier. e.g. eval "eval $(quote "eval $(quote "eval $(quote "echo test")")")"