i noticed the following
Code: Select all
wine tool.exe arg1 arg2 arg3 | hexdump -C
but if i try to assign the output of the command to a variable by using the backtick operaror :
Code: Select all
res=`wine tool.exe arg1 arg2 arg3` ; echo $res | hexdump -C
why is there such a behavior ?
is it specific to this tool.exe program ? or is it something that happens while using wine ? while using wine 1.4 in particular ? or is it me not using backtick operator as it is intended to be used ?
any idea ?