I am doing echo in Unix promt, but it gives me error on unit>> echo "`asdf" Unmatched `. TIA
F Frank Feb 8, 2006 #1 I am doing echo in Unix promt, but it gives me error on unit>> echo "`asdf" Unmatched `. TIA
B bplumhoff Feb 8, 2006 #2 Hi Frank, That's OT here. The ` starts an "instring" command. echo "`echo hello` world" would result in hello world. Change your command to echo '`asdf' or echo "\`asdf", for example. HTH, Bernd
Hi Frank, That's OT here. The ` starts an "instring" command. echo "`echo hello` world" would result in hello world. Change your command to echo '`asdf' or echo "\`asdf", for example. HTH, Bernd
F Frank Feb 9, 2006 #3 Hi Frank, That's OT here. The ` starts an "instring" command. echo "`echo hello` world" would result in hello world. Change your command to echo '`asdf' or echo "\`asdf", for example. HTH, Bernd Click to expand... Done, these two tricks worked. echo '`asdf' echo \`asdf
Hi Frank, That's OT here. The ` starts an "instring" command. echo "`echo hello` world" would result in hello world. Change your command to echo '`asdf' or echo "\`asdf", for example. HTH, Bernd Click to expand... Done, these two tricks worked. echo '`asdf' echo \`asdf