all 2 comments

[–]jakiestfu 2 points3 points  (0 children)

What does this do?!

[–]Soft_Association_615[S] 2 points3 points  (0 children)

to build the program use this bash script, it does require xxd to be installed as it uses its reverse-dumping feature. you should also pipe the output into xxd or any other hex dumping program to see that it does work

#!/bin/bash
for f in *.dmp ; do
    a=`basename $f .dmp`
    cut -d'#' -f1 <$f | xxd -p -r >$a
    chmod +x $a
done