I know the -s
option should display longer arguments, but it doesn\'t work always (probably because of those curly brackets meaning array or nested arguments?).
To verbosely describe what Vladimir Kunschikov said - run the following commands:
git clone git://git.code.sf.net/p/strace/code strace-code
cd strace-code
./bootstrap
./configure
make
make install
The modified version of strace
should have been installed in /usr/local/bin/strace
. Now, run the strace
using a large value for the -s
option. Example:
strace -s 65536 command_to_run_goes_here
Sources: