-
Notifications
You must be signed in to change notification settings - Fork 0
/
owac.sh
34 lines (29 loc) · 894 Bytes
/
owac.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
#Open WhatsApp Conversation
# Prompt the user for a phone number
read -p "Coloque o número de telefone(somente números): " phone
# Prompt the user to choose a browser
echo "Que navegador você gostaria de usar?"
echo "1. Chrome"
echo "2. Firefox"
read -p "Coloque o número do navegador de sua escolha: " browser
# Prompt the user to choose app or web
echo "Você quer usar o aplicativo ou o web?"
echo "1. Aplicativo"
echo "2. Web"
read -p "Coloque o modo de usar de sua escolha: " method
if [ "$method" == "1" ]; then
domain="https://api.whatsapp.com/send?phone=$phone"
elif [ "$method" == "2" ]; then
domain="https://web.whatsapp.com/send?phone=$phone"
else
echo "Escolha inválida."
fi
# Open the URL in the chosen browser
if [ "$browser" == "1" ]; then
google-chrome $domain
elif [ "$browser" == "2" ]; then
firefox $domain
else
echo "Escolha inválida."
fi