lsinitrd.sh: get rid of awk call

This commit is contained in:
Harald Hoyer 2012-07-03 18:23:59 +02:00
parent f7bccf3724
commit d8caa679e0

View File

@ -63,7 +63,7 @@ if [[ $# -eq 2 ]]; then
exit $?
fi
echo "$image: $(du -h $image | awk '{print $1}')"
echo "$image: $(du -h $image | while read a b; do echo $a;done)"
echo "========================================================================"
$CAT "$image" | cpio --extract --verbose --quiet --to-stdout 'lib/dracut/dracut-*' 2>/dev/null
echo "========================================================================"