mirror of
https://github.com/ovosimpatico/Whatsapp-Bulk-Sender
synced 2026-01-15 13:32:52 -03:00
11 lines
217 B
Bash
11 lines
217 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# check if Python is installed
|
||
|
|
if command -v python &> /dev/null
|
||
|
|
then
|
||
|
|
# run the Python script
|
||
|
|
python main.py
|
||
|
|
else
|
||
|
|
# print an error message
|
||
|
|
echo "Python is not installed on this system."
|
||
|
|
fi
|