how to prevent bash or zsh from interpreting special characters
# Short answer:
Escape the special characters with backslash e.g.:
echo This_is_a_wildcard_*
--> zsh: no matches found: This_is_a_wildcard_*
echo This_is_a_wildcard_\*
--> This_is_a_wildcard_*
# Using double quotes around the argument works as well, e.g.:
echo "This is a wildcard *"
--> This is a wildcard *
# Note, some of the special characters interpreted by bash/zsh include:
' " ! $ & [ ] ( ) ? *
Also in C++:
- nginx certbot ubuntu
- remove snap package
- pyinstaller dmg on mac
- git supprimer branche origin
- github allow large files
- how to install asyncstorage in react native
- git commit from terminal
- batch write to text file
- remove unnecessary npm packages
- create virtual env pyhton3
- import project from gitlab to github
- git bash open in file explorer
- sublime text download ubuntu
- popwershell add local user
- how to install imagemagick in linux
- how to check if tor is installed
- how to create a mongo db database digital ocean nginx
- how to prevent bash or zsh from interpreting special characters
- git add remote
- golang gitignore is not working
- how to reset network on ubuntu 20.04
- No module named notebook
- git push origin branch rejected
- run newly installed chrome from terminal linux