slackcat
slackcat copied to clipboard
Post messages to Slack from the command line
We did this mostly so that we could do this: https://github.com/whosonfirst/go-slackcat-writer (specifically so we could use it with io.MultiWriter for logging) Which could have been done without using slackcat or...
> If you want Slack to treat your message as completely unformatted, pass parse=full. > This will ignore any markup formatting you added to your message. > https://api.slack.com/docs/formatting#parsing_modes So I...
Added ability to send buffered messages. I use this feature for sending reports from PostgreSQL. While sending with this option we will not to create temporary files and will not...
`--channel` doesn't work and slackcat prints out this usage hint: `Usage: slackcat [-c #channel] [-n name] [-i icon] [message]` so update the docs to be accurate
Hi all, I'm trying to setup the conf to send messages as my user. I got the token from the website, by looking at the request slacks sends. `slackcat` seems...
I've mentioned all the steps for slackcat usage. cc @paulhammond
Hi! What was the rationale behind 8ce046db4a10c48205fa42034d025e54c5952e75? I imagine this change in behaviour would be useful when dealing with streaming output. Was that the intended use case? I use `slackcat`...
I had an issue when attempting to cat a file with an empty line to slackcat. For example if the following is the contents of temp.log: ``` Hello World ```...
I want to pass into slackcat a string like ``` ``` and see a real link into slack channel. To do this, slackcat have to pass `parse=full` as I understand?...
Before: ``` 2014/05/21 18:33:21 Post failed: Not OK ``` After: ``` 2014/05/21 18:37:00 Post failed: Not OK: 500, No text specified ``` Also, response body should be closed since it...