1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00
samba-mirror/buildtools/compare_install.sh

9 lines
154 B
Bash
Raw Normal View History

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