Update send_message.sh
Browse files- send_message.sh +2 -1
send_message.sh
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
#!/bin/sh
|
| 2 |
-
|
| 3 |
# Define the message to be sent
|
| 4 |
MESSAGE="Hello"
|
| 5 |
|
|
@@ -8,3 +8,4 @@ URL="https://api.telegram.org/bot${BOT_TOKEN}/sendMessage"
|
|
| 8 |
|
| 9 |
# Send the message using curl
|
| 10 |
curl -s -X POST $URL -d chat_id=$CHAT_ID -d text="$MESSAGE"
|
|
|
|
|
|
| 1 |
#!/bin/sh
|
| 2 |
+
echo "hello niggas"
|
| 3 |
# Define the message to be sent
|
| 4 |
MESSAGE="Hello"
|
| 5 |
|
|
|
|
| 8 |
|
| 9 |
# Send the message using curl
|
| 10 |
curl -s -X POST $URL -d chat_id=$CHAT_ID -d text="$MESSAGE"
|
| 11 |
+
echo "curl was sent"
|