print file name for easier manual fixing
This commit is contained in:
parent
d3419affdb
commit
ea69a6732d
|
@ -22,6 +22,7 @@ searchfile() {
|
||||||
if ls "$link" 2>/dev/null >/dev/null; then
|
if ls "$link" 2>/dev/null >/dev/null; then
|
||||||
continue
|
continue
|
||||||
else
|
else
|
||||||
|
echo "In $1:"
|
||||||
echo $link
|
echo $link
|
||||||
FILES=$(find . -iname "*$(basename "$link")*")
|
FILES=$(find . -iname "*$(basename "$link")*")
|
||||||
if [ $(echo -n "$FILES" | wc -c) -lt 1 ]; then
|
if [ $(echo -n "$FILES" | wc -c) -lt 1 ]; then
|
||||||
|
@ -37,6 +38,7 @@ searchfile() {
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
echo "In $1:"
|
||||||
echo $link
|
echo $link
|
||||||
FILES=$(find . -iname "*$(basename "$link")*")
|
FILES=$(find . -iname "*$(basename "$link")*")
|
||||||
if [ $(echo -n "$FILES" | wc -c) -lt 1 ]; then
|
if [ $(echo -n "$FILES" | wc -c) -lt 1 ]; then
|
||||||
|
|
Loading…
Reference in New Issue