Skip to content

Instantly share code, notes, and snippets.

@fbatiga
Created November 19, 2019 18:53
Show Gist options
  • Select an option

  • Save fbatiga/ce53be123b0184c1bb5655164d50aeea to your computer and use it in GitHub Desktop.

Select an option

Save fbatiga/ce53be123b0184c1bb5655164d50aeea to your computer and use it in GitHub Desktop.
Send message to slack
#!/bin/bash
CHANNEL="#devops"
USERNAME="tamea"
EMOJI=":ghost:"
HOOK=<slack hook url>
MSG=$1
PAYLOAD="payload={\"channel\": \"$CHANNEL\", \"username\": \"TAMEA SERVER - $USERNAME\", \"text\": \"$MSG\", \"icon_e$
curl -X POST --data-urlencode "$PAYLOAD" "$HOOK"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment