source:
vendor/current/buildtools/compare_install.sh
Last change on this file was 988, checked in by , 9 years ago | |
---|---|
File size: 138 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | |
3 | prefix1="$1" |
4 | prefix2="$2" |
5 | |
6 | (cd $prefix1 && find . ) | sort > p1.txt |
7 | (cd $prefix2 && find . ) | sort > p2.txt |
8 | diff -u p[12].txt |
Note:
See TracBrowser
for help on using the repository browser.