lsinitrd.sh: get rid of awk call

master
Harald Hoyer 2012-07-03 18:23:59 +02:00
parent f7bccf3724
commit d8caa679e0
1 changed files with 1 additions and 1 deletions

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 "========================================================================"