If you really want to use single quotes in the outermost layer, remember that you can glue both kinds of quotation. Example:
alias rxvt='urxvt -fg '"'"'#111111'"'"' -bg '"'"'#111111'"'" # ^^^^^ ^^^^^ ^^^^^ ^^^^ # 12345 12345 12345 1234
Explanation of how '"'"'
is interpreted as just '
:
'
End first quotation which uses single quotes."
Start second quotation, using double-quotes.'
Quoted character."
End second quotation, using double-quotes.'
Start third quotation, using single quotes.
If you do not place any whitespaces between (1) and (2), or between (4) and (5), the shell will interpret that string as a one long word.
Related Posts:
- How to make “if not true condition”?
- -bash: syntax error near unexpected token `newline’
- What is the purpose of “&&” in a shell command?
- Bash syntax error: unexpected end of file
- Bash syntax error: unexpected end of file
- bash : cd : too many arguments
- How do I pause my shell script for a second before continuing?
- How do I tell if a regular file does not exist in Bash?
- How to create a file in Linux from terminal window? [closed]
- In the shell, what does ” 2>&1 ” mean?
- Is double square brackets [[ ]] preferable over single square brackets [ ] in Bash?
- What is the preferred Bash shebang?
- Read a file line by line assigning the value to a variable
- How to compare strings in Bash
- What does export PS1=”\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ ” mean in MacOS’ bash Terminal?
- In the shell, what does ” 2>&1 ” mean?
- How do I use a regex in a shell script?
- How to concatenate string variables in Bash
- How to grep for case insensitive string in a file?
- Difference between wait and sleep
- How do I execute a bash script in Terminal?
- Multi-line string with extra space (preserved indentation)
- Multi-line string with extra space (preserved indentation)
- Bash script and /bin/bash^M: bad interpreter: No such file or directory
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- How do I iterate over a range of numbers defined by variables in Bash?
- Echo newline in Bash prints literal \n
- -bash: syntax error near unexpected token `newline’ for display command
- An “and” operator for an “if” statement in Bash
- What does “-ne” mean in bash?
- How can I declare and use Boolean variables in a shell script?
- How to reload .bashrc settings without logging out and back in again?
- How can I declare and use Boolean variables in a shell script?
- What is the meaning of 2 in 2> /dev/null
- How to reload .bash_profile from the command line?
- Replace one substring for another string in shell script
- Parsing JSON with Unix tools
- Cannot use mkdir in home directory: permission denied (Linux Lubuntu)
- How do I compare two string variables in an ‘if’ statement in Bash?
- Using find command in bash script
- Return value in a Bash function
- Is bash a programming language?
- Emulating a do-while loop in Bash
- Pass variable from one Jenkins stage to others in sh
- How to change the output color of echo in Linux
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- Delete all local git branches
- bash assign default value
- What does -z mean in Bash?
- How to use gdb with pipes and stdin
- find: missing argument to -exec
- Grep ‘binary file matches’. How to get normal grep output?
- Simple logical operators in Bash
- Bash if statement with multiple conditions throws an error
- How to check if an environment variable exists and get its value?
- Laravel PHP Command Not Found
- Getting an “ambiguous redirect” error
- Binary Data Posting with curl
- Difference between return and exit in Bash functions
- How to modify a global variable within a function in bash?
- choosing between $0 and BASH_SOURCE
- How do I automatically restart a Minecraft Spigot server in the event of a crash or /stop when using screen?
- Create a new file in git bash
- How do I remove the file suffix and path portion from a path string in Bash?
- Fast ping sweep in python
- Using SED with wildcard
- How do I add a newline using printf?
- zip error – Nothing to do
- How to remove last n characters from a string in Bash?
- How can I check if a program exists from a Bash script?
- Bash command to sum a column of numbers
- Meaning of “[: too many arguments” error from if [] (square brackets)
- Associative arrays in Shell scripts
- Is there anything in Zsh like .bash_profile?
- How to split one string into multiple strings separated by at least one space in bash shell?
- Running programs in parallel using xargs
- “Error installing rails” because “extconf.rb failed” on Ubuntu 18.04
- Linux find and grep command together
- How to output a multiline string in Bash?
- Make a Bash alias that takes a parameter?
- Copy multiple files from one directory to another from Linux shell
- Shell script not running, command not found
- How to ssh from within a bash script?
- How can I do a recursive find/replace of a string with awk or sed?
- Bash mkdir and subfolders
- Bash mkdir and subfolders
- Linux Bash: Move multiple different files into same directory
- Difference between sh and Bash
- What is a simple explanation for how pipes work in Bash?
- Error handling in Bash
- Integer expression expected error in shell script
- Timeout a command in bash without unnecessary delay
- Error when using ‘sed’ with ‘find’ command on OS X: “invalid command code .”
- How to determine if a bash variable is empty?
- What is the difference between double and single square brackets in bash?
- How do I get the current Unix time in milliseconds in Bash?
- How to create a UUID in bash?
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- How to make bash scripts print out every command before it executes?
- What does passing the -xe parameters to /bin/bash do