mirror of
https://github.com/lewurm/savezelda.git
synced 2024-11-17 16:19:21 +01:00
4 lines
91 B
Bash
Executable File
4 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
TARGET=$1; shift
|
|
cat $* /dev/zero | dd bs=1024 count=128 2>/dev/null > $TARGET
|