Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When dealing with special characters the lesson advises to use quotes, however single quotes is the safer option. For example ``` touch \$HOME ls "$HOME" # lists the contents of the home directory ls '$HOME' # lists the '$HOME' file ```
- Loading branch information