Announce 3.1.1pre1.
[rsync-web.git] / rsync-debug
1 #!/bin/sh
2
3 ulimit -c unlimited
4
5 # Some systems have "truss" or "tusc" instead of "strace".
6 # The -f option tells strace to follow children too.
7 # The -t option asks for timestamps.
8 # The -s 1024 option increases the string decoding limit per function call.
9 # The -o option tells strace where to send its output.
10 strace -f -t -s 1024 -o /tmp/rsync-$$.out rsync "${@}"