I did this on top of my .bashrc
.bashrc
vm_name=$(curl http://artii.herokuapp.com/make?text=saml)
echo -e \"
$vm_name
\"
I got
\[\] _
| |
___ __ _ _ __ ___ | |
/ __|/ _ _ \| |
\__ \ (_| | | | | | | |
|___/\__,_|_| |_| |_|_|
\[\]
I got this error
-bash: command substitution: line 9: syntax error near unexpected token
|' -bash: command substitution: line 9:| '_ '
Is there a way to bypass this error and force my echo to treat my banner as string ?
echo -e? You can just putcurl -s http://artii.herokuapp.com/make?text=samlin your.bashrc- anubhavacurl -sbefore. I guess that do the trick. - code8888-sin Debian just fine. - George Vasiliou