# catslack **Repository Path**: influxdata/catslack ## Basic Information - **Project Name**: catslack - **Description**: Shell -> Slack the easy way - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-07-23 - **Last Updated**: 2023-07-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CatSlack Inspired by [SlackCat](https://github.com/rlister/slackcat) but rewritten in Go for easy portability. This is a command line utility to post `stdin` to a configured [Incoming Webhook](https://api.slack.com/incoming-webhooks) on your slack channel. To use it have a script that outputs something useful to `stdin`. Maybe something like `myCoolScript.sh`... ```sh $ cat myCoolScript.sh #!/bin/bash echo "I'm going to be posted in Slack!" # Set your Slack Incoming Webhook URL: $ export URL="https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX" # Experience pleasure by using the catslack! $ ./myCoolTestScript.sh | catslack ```