adding a script to create a cpio

This commit is contained in:
Conor Horan-Kates 2017-02-21 17:43:39 -08:00
parent 2afe9dd478
commit c93140e85e

View File

@ -0,0 +1,9 @@
#!/bin/bash
## makecpio.sh
DIR='_fake'
OUT="revo.$$.cpio"
find ${DIR} -print | cpio -ov > ${OUT}
ls -lh ${OUT}
binwalk -v ${OUT}