mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
740 B
Plaintext
26 lines
740 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# slackcat
|
|
|
|
> Utility for passing files and command output to Slack.
|
|
> More information: <https://github.com/bcicen/slackcat#usage>.
|
|
|
|
- Post a file to Slack:
|
|
|
|
`slackcat {{[-c|--channel]}} {{channel_name}} {{path/to/file}}`
|
|
|
|
- Post a file to Slack with a custom filename:
|
|
|
|
`slackcat {{[-c|--channel]}} {{channel_name}} {{[-n|--filename]}} {{filename}} {{path/to/file}}`
|
|
|
|
- Pipe command output to Slack as a text snippet:
|
|
|
|
`{{command}} | slackcat {{[-c|--channel]}} {{channel_name}} {{[-n|--filename]}} {{snippet_name}}`
|
|
|
|
- Stream command output to Slack continuously:
|
|
|
|
`{{command}} | slackcat {{[-c|--channel]}} {{channel_name}} {{[-s|--stream]}}`
|