P plice New Member Apr 28, 2015 #1 hi, i need to run strace to try to find some bugs, but i have a problem passing options to strace: e.g strace -e trace=open ./app_name -o app_options then strace will try to use -o app_options as to itself and won't start :/ thanks
hi, i need to run strace to try to find some bugs, but i have a problem passing options to strace: e.g strace -e trace=open ./app_name -o app_options then strace will try to use -o app_options as to itself and won't start :/ thanks
Cromewell Administrator Staff member Apr 28, 2015 #2 Try quoting. strace -e trace="open ./app_name -o app_options"