DEV Community

Discussion on: How Unix programmers at restaurants search menus for their favorite plate

Collapse
 
blackknight36 profile image
Michael

You need to replace your double quotes with literal single quotes. Here's why.

$ echo "Available!"
bash: !": event not found

$ echo 'Available!'
Available!