Browse Source

added progress indicator

pull/1054/head
Daniel Gibbs 9 years ago
parent
commit
05f068d039
  1. 5
      lgsm/functions/command_dev_detect_glibc.sh

5
lgsm/functions/command_dev_detect_glibc.sh

@ -22,10 +22,13 @@ elif [ -f "${filesdir}" ]; then
fi fi
echo "" echo ""
files=$(find ${filesdir} | wc -l)
find ${filesdir} -type f -print0 | find ${filesdir} -type f -print0 |
while IFS= read -r -d $'\0' line; do while IFS= read -r -d $'\0' line; do
objdump -T $line 2>/dev/null|grep -oP "GLIBC[^ ]+" >>"${lgsmdir}/tmp/detect_glibc.tmp" objdump -T $line 2>/dev/null|grep -oP "GLIBC[^ ]+" >>"${lgsmdir}/tmp/detect_glibc.tmp"
echo -n "$i / $files" $'\r'
((i++))
done done
echo ""
cat "${lgsmdir}/tmp/detect_glibc.tmp"|sort|uniq|sort -r --version-sort cat "${lgsmdir}/tmp/detect_glibc.tmp"|sort|uniq|sort -r --version-sort
rm "${lgsmdir}/tmp/detect_glibc.tmp" rm "${lgsmdir}/tmp/detect_glibc.tmp"
Loading…
Cancel
Save