Skip to content

Instantly share code, notes, and snippets.

@arifnd
Created August 23, 2014 04:11
Show Gist options
  • Select an option

  • Save arifnd/d0ed771e731151b08884 to your computer and use it in GitHub Desktop.

Select an option

Save arifnd/d0ed771e731151b08884 to your computer and use it in GitHub Desktop.
bash scrip to send Slack Incoming WebHooks
#!/bin/bash
token=
parm="payload={\"channel\": \"$1\", \"username\": \"$2\",\"text\": \"$3\"}"
curl -X POST --data-urlencode "$parm" $token
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment