Muhammad Usman
2023-05-13 06:53:16 UTC
I got the solution just after 26 years. Use single quotes such as
echo -e '<!DOCTYPE html>'
will solve the issue.
If we use double quotes, it will surely raise an error.
echo -e "<!DOCTYPE html>"
```bash: !DOCTYPE: event not found```
echo -e '<!DOCTYPE html>'
will solve the issue.
If we use double quotes, it will surely raise an error.
echo -e "<!DOCTYPE html>"
```bash: !DOCTYPE: event not found```