If you try to echo a String as a Bash command or a Script that has a special character such as an exclamation mark, you will see that it will not work as intended or you get an error.
Example:bash-3.2$ echo Hello World!
bash: !": event not found
Below is an extensive table that enlists the special characters and how to escape them with Bash String or Script.
Special Character | Meaning | How to Escape |
---|---|---|
" |
Double quote | \" |
' |
Single quote | \' |
$ |
Dollar sign | \$ |
& |
Ampersand | \& |
( |
Left parenthesis | \( or \) |
) |
Right parenthesis | \( or \) |
{ |
Left curly brace | \{ |
} |
Right curly brace | \} |
[ |
Left square bracket | \[ |
] |
Right square bracket | \] |
! |
Exclamation mark | \! |
* |
Asterisk (wildcard) | \* |
? |
Question mark (wildcard) | \? |
\ |
Backslash | \\ |
> |
Greater than sign (output redirection) | \> |
< |
Less than sign (input redirection) | \< |
; |
Semicolon (command separator) | \; |
Now let's make our "Hello World!" string work.
$ echo Hello World \!
Hello World
Example:
# echo <
bash: syntax error near unexpected token `newline'
Fix:
# echo \<
<

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Bash,
- How to use Autocomplete and Autosuggestion in Shell Commands
- Bash How to Save Output of a Command to a Variable
- How to know the current shell you are logged in?
- How to Echo Bash Command to a File
- Bash Command to Get Absolute Path for a File
- How to Split a String based on Delimiter in Bash Scripting
- Bash: Command Line Arguments to Bash Script Examples
- Bash Command to Download a File From URL
- How to check if a Command Exists using Bash Script
- Ways to Increment a counter variable in Bash Script
- Know Bash shell version command
- Bash command to Read, Output and Manipulate JSON File
- Bash Command to Base64 Decode a String
- Bash Command to Check Python Version
- Bash: Command to Find the Length of a String
- What is $$ in Bash Shell Script- Special Variable
- Bash - How to check if a Command Failed?
- List all Username and User ID using Bash Command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- bash: netstat: command not found
- Bash Command To Go Back To Previous Directory
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- How to check your IP using bash for Windows?
- Bash Command To Check If File Exists
- Convert String from uppercase to lowercase in Bash
More Posts:
- Formatting Double in Java [Examples] - Java
- How to Split a Java Collections using Predicate, Lambda and Steams - Java
- Python 3.x - SQLite 3 Database CRUD Operations Examples - Python
- How to tar.gz a directory or folder Command - Linux
- Microsoft Teams: Sign-in is blocked error - Teams
- 23: Python Programs to concatenate two Lists - Python-Programs
- How to check for Updates on Windows 11 - Windows-11
- How to install XML Tools Plugin Notepad++ - NotepadPlusPlus