1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
post_install() { echo "This is the binary relase for AMD64/EMT64 technology." echo "" if [ "$CARCH" = "x86_64" ]; then echo "This binary has default integer of 64bits!" fi } post_upgrade() { post_install } op=$1 shift $op $*