You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
debian-installer/build/util/pad

18 lines
312 B

#!/bin/sh
FILE=$1
SIZE=$2
if [ -z "$FILE" ]; then
17 years ago
echo "Usage: "pad FILE SIZE""
exit 1
fi
fsize=$(wc -c $FILE | cut -d " " -f 1)
pad=$(expr $SIZE - $fsize)
echo "Padding $FILE from $fsize to $SIZE... padding with $pad bytes"
if [ $pad -gt 0 ]; then
dd if=/dev/zero bs=1 count=$pad 2>/dev/null >> $FILE
fi