mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-16 20:56:52 +00:00
10 lines
160 B
Bash
Executable File
10 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Example - generating 64 MiB file
|
|
# ./generate-mb.sh my_file.bin 64
|
|
|
|
fname=$1
|
|
size=$2
|
|
|
|
dd if=/dev/urandom of="$fname" bs=1m count="$size"
|