XidusCore-v0.42/
#!/bin/sh

# produces a textdump from the binary
# adds code to set the 'freshinstall flag on $sys

binary=$*

if [ "$binary" == "" ]; then
	binary=binary
fi

bin/coldcc -# -d -b $binary -t textdump

cat freshinstall.cc >> textdump

echo "Textdump created and ready to go."