Command not found fix

#!/bin/bash

csv=”$HOME/Desktop/contacts.csv”

if [ ! -f “$csv” ]; then
echo “contacts.csv not found on Desktop. Please run the setup script first.” exit 1
fi

while IFS=, read -r number; do
[[ -z “$number” ]] && continue

message=”in Telegram @TEXCOOLBot. Do you have Telegram?”

echo “Sending to $number…”

# AppleScript to send SMS
osascript <

Leave a comment