fill - npedotnet/npe-tools GitHub Wiki
creating a random binary file or creating a binary file filled with specific character.
fill [-i inputfile] -o outputfile -s size [-c character]
| Option | Description |
|---|---|
| -i inputfile | input file name |
| -o outputfile | output file name |
| -s size | output file size(max 1GByte) k/m/g ex. -s 0.5k |
| -c character | filled character random character when abbreviated Hex ex. -c 0x00 |
fill -o random.bin -s 0.5k
fill -i test.txt -o test.bin -s 1k -c 0x00