chiark
/
gitweb
/
~mdw
/
termux-packages
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e7e94c
)
detect-hardlinks.sh: Show which files are hard links
author
Fredrik Fornwall
<fredrik@fornwall.net>
Sun, 11 Oct 2015 15:32:19 +0000
(11:32 -0400)
committer
Fredrik Fornwall
<fredrik@fornwall.net>
Sun, 11 Oct 2015 15:32:19 +0000
(11:32 -0400)
detect-hardlinks.sh
patch
|
blob
|
blame
|
history
diff --git
a/detect-hardlinks.sh
b/detect-hardlinks.sh
index 9fd4fafb63f72c17d3a27e370394c895ec08058e..207e40602d856eee71160f522810c2df169152c6 100755
(executable)
--- 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