11 lines
141 B
Bash
11 lines
141 B
Bash
#!/bin/sh
|
|
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|
|
((
|
|
cd /home/oh_my_bot/project/oh_my_bot && \
|
|
python3 app.py
|
|
) > /cron.log 2>&1)
|