Page MenuHomeDevCentral

.Stripdb2
No OneTemporary

.Stripdb2

#!/bin/sh
# simple question script.
echo
echo "-----------------------------------------------"
echo "stripping your darkbot deletes the relocation"
echo "information and symbol table used by debuggers,"
echo "This decreases the size of your darkbot bin."
echo
ls -l ../source/darkbot.exe
echo
echo -n "Would you like to strip your darkbot? [Y/n] "
read CHOICE
echo
case $CHOICE in
n)
echo
echo "Skipping strip..."
echo
;;
N)
echo
echo "Skipping strip..."
echo
;;
*)
strip ../source/darkbot.exe
ls -l ../source/darkbot.exe
echo
echo "strip Completed."
echo
;;
esac

File Metadata

Mime Type
text/x-shellscript
Expires
Sun, Nov 16, 13:13 (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3167350
Default Alt Text
.Stripdb2 (597 B)

Event Timeline