make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / user-tools / PMrecdiff
blobed9693edd43d2296ea27932fcc7f9b7e8ef5521d
1 #!/bin/bash
3 true <<EOF
4 =pod
6 =head1 NAME
8 PMrecdiff - Poor man's directory tree difference viewer, comparing file names and sizes recursively
10 =cut
12 EOF
15 diff -bBiy --suppress-common-lines <(cd "$1"; find . -type f -printf "%p %s\n" -or -type d -printf "%p\n" | sort) <(cd "$2"; find . -type f -printf "%p %s\n" -or -type d -printf "%p\n" | sort)