This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

a litle Linux Script, to start Up your Bots Simply and Fast

Old posts that have not been replied to for several years.
Locked
b
benzon

a litle Linux Script, to start Up your Bots Simply and Fast

Post by benzon »

I got that ide that i had to make a Script becorse i got at lot off Eggdrop Bots and it´s Anoing to start them up Singel handen if i have to Restart my Linux Box !

This Script is Brilliant ! :D

#!/bin/sh
echo "Eggdrop Start Script Loadet"
sleep 5
./eggdrop conf1.conf
echo "conf1.conf Loadet"
sleep 5
./eggdrop conf2.conf
echo "conf2.conf Loadet"
sleep 5
./eggdrop conf3.conf
echo "conf3.conf Loadet"
sleep 5
echo "Done"

Btw. remember to change the conf1.conf to yoi Config Name 4 the Bot :)

And a nother Thing
Remember not to put a endig to the file when you save it the file name shut be eks. start NOT start.sh og enything else !

And When you have made the Script Remember to Place it in the Folder you godt Eggdrop installed in !

When you have done that you shut Chmod det file
Eks.
chmod +x start
------------------
chmod +x file-name

When You Are done whit this you type

./start

and the Script Shut Load all The Bots whit 5 Sec Betwen Every Load !
k
kebabdjuret
Voice
Posts: 26
Joined: Sat Feb 09, 2002 8:00 pm
Location: Sweden
Contact:

Post by kebabdjuret »

echo "./eggdrop eggdrop1.conf && ./eggdrop eggdrop2.conf && ./eggdrop eggdrop3.conf">start
./start

edit: and chmod (:
Locked