mirror of
https://github.com/samba-team/samba.git
synced 2025-02-05 21:57:51 +03:00
9 lines
154 B
Bash
9 lines
154 B
Bash
|
#!/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
|