1
0
mirror of https://github.com/a2-4am/4cade.git synced 2025-02-24 08:29:13 +00:00
2019-09-20 20:57:23 -04:00

12 lines
237 B
Bash
Executable File

#!/bin/bash
totalsize=$1
outfile=$2
[[ "$OSTYPE" == "linux-gnu" ]] \
&& filesize=$(stat -c "%s" "$outfile") \
|| filesize=$(stat -f "%z" "$outfile")
padsize=$((512-$filesize))
dd if=/dev/zero bs=1 count=$padsize >> "$outfile"