mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
9 lines
148 B
Bash
Executable file
9 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "argument required" >&2
|
|
exit 1
|
|
fi
|
|
dd status=none if=/dev/zero bs=1024 count=1024 | tr '\000' '\377' > $1
|
|
|