Hey,
I was wondering if there is a way in strace to trace the content of program variable.
so for example:
Code:
#!/bin/bash
pwd=`/bin/pwd`
/bin/echo "pwd is: $pwd"
So, is there a way in strace to display the result of `/bin/pwd` that will be stored in program variable pwd?
thanks,
-domet