News

With the new premium $35 Alexa Voice Remote Pro, you can say "Alexa, find my remote" into any Echo device you own (or the ...
Capturing command output with $ () me@banshee:~$ echo test test me@banshee:~$ echo $(echo test) test The $() command substitution operator captures the output of a command. Sounds simple enough ...
Audible Alerts You can also sound an audible alert with echo as well: echo -e "\aHello World" The -e option allows you to change the format of the output while using echo. echo -e "This is a\bLinux ...
I'm a little confused by what you want then. Either the string needs the double quotes all of the time or it doesn't. If it doesn't, then just use echo normally and you should be fine. If it does ...