Files
Whatsapp-Bulk-Sender/run_linux.sh
nanometer5088 c368270cf2 README + launch scripts
Signed-off-by: nanometer5088 <code.deleo@simplelogin.com>
2023-05-02 20:07:56 -03:00

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