1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/buildtools/compare_install.sh
Andrew Tridgell d2b35c3a24 build: make compare_install.sh also check for missing directories
Thanks to Nadya for pointing this out
2010-04-19 21:00:16 +10:00

9 lines
140 B
Bash
Executable File

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