Page MenuHomeDevCentral

.Stripdb
No OneTemporary

.Stripdb

#!/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
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
ls -l ../source/darkbot
echo
echo "strip Completed."
echo
;;
esac

File Metadata

Mime Type
text/x-shellscript
Expires
Fri, Feb 28, 20:14 (10 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2438593
Default Alt Text
.Stripdb (585 B)

Event Timeline