From: Fredrik Fornwall Date: Sun, 11 Oct 2015 15:32:19 +0000 (-0400) Subject: detect-hardlinks.sh: Show which files are hard links X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/4245f247d66fb2e9aceda2d28583d46f03a127e5?ds=sidebyside detect-hardlinks.sh: Show which files are hard links --- diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index 9fd4fafb..207e4060 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -7,7 +7,8 @@ for f in * */subpackages/*; do if [ -d $f/massage ]; then cd $f/massage if [ -n "$(find . -type f -links +1)" ]; then - echo "$f contains hardlink, which will not work on Android 6.0+" + echo "$f contains hardlink, which will not work on Android 6 or later:" + find . -type f -links +1 fi fi done