Hello, im trying to start multiple discord bots on startup, the first bot starts fine but the other ones do not, here is the code from my rc.local
``
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
cd /home/bot-1
node index.js
cd /home/bot-2
node index.js
cd /home/bot-3
node index.js
cd /home/bot-4
node index.js
cd /home/bot-5
node index.js
exit 0``
``
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
cd /home/bot-1
node index.js
cd /home/bot-2
node index.js
cd /home/bot-3
node index.js
cd /home/bot-4
node index.js
cd /home/bot-5
node index.js
exit 0``
