1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/buildtools/compare_install.sh
Andreas Schneider 2d5d88ff34 buildtools: Reformat shell scripts
shfmt -f buildtools | xargs shfmt -w -p -i 0 -fn

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2022-02-22 15:23:35 +00:00

9 lines
134 B
Bash
Executable File

#!/bin/sh
prefix1="$1"
prefix2="$2"
(cd $prefix1 && find .) | sort >p1.txt
(cd $prefix2 && find .) | sort >p2.txt
diff -u p[12].txt