Démarrage de Mysql sous Jag...

#!/bin/sh

. /etc/rc.common

cd /usr/local/mysql

if [ -e ./bin/safe_mysqld ]; then
./bin/safe_mysqld --user=mysql &
fi
 
<blockquote><font class="small">Post&eacute; &agrave; l'origine par almisr:</font><hr /> #!/bin/sh

. /etc/rc.common

cd /usr/local/mysql

if [ -e ./bin/safe_mysqld ]; then
./bin/safe_mysqld --user=mysql &amp;
fi


[/QUOTE]

Là cela tent plutôt vers le StartupItem que tout autre chose
wink.gif
a noter que tu peux en télécharger un sur le site http://www.entropy.ch
wink.gif
 
merci mais quand je veux faire des script en batch j'ai pas besoin de les télécharger je les écris

#!/bin/sh

#
#GNU BSD Darwin Kernel 6.x Plumber [email protected] ScriptUtils InetInfo
#

getInterfaces=`ifconfig -lu`

echo

for Interface in $getInterfaces; do

getInet=`ifconfig $Interface | sed -n -e "s/^.*inet //g" -n -e "s/ netmask.*//p"`
getEther=`ifconfig $Interface | sed -n -e "s/^.*ether //p"`
getmtu=`ifconfig $Interface | sed -n -e "s/^.*mtu //p"`

echo "interface" $Interface

for inet in $getInet; do
getBcast=`ifconfig $Interface | sed -n -e "s/^.*$inet.*.broadcast//p"`

if [ "${inet}" != "--&gt;" ]; then
echo " inet" $inet

if [ "${getBcast}" != "" ]; then
echo " broadcast" $getBcast
fi
fi

done

if [ "${getEther}" != "" ]; then
echo " mac" $getEther

fi

if [ "${getmtu}" != "" ]; then
echo " mtu" $getmtu

fi

echo

done

exit

#End