Skip to content

Instantly share code, notes, and snippets.

@bossjones
Created April 10, 2024 14:29
Show Gist options
  • Save bossjones/0771d0ebc28315649be2439038b1d51d to your computer and use it in GitHub Desktop.
Save bossjones/0771d0ebc28315649be2439038b1d51d to your computer and use it in GitHub Desktop.
install_slack_cli.sh
# Instructions: https://api.slack.com/automation/quickstart
# check permissions of your /usr/local/bin dir (slack needs /usr/local/bin to be owned by the user)
# should look like:
# # before
# ❯ ls -lta /usr/local/ | grep bin
# drwxr-xr-x 20 root wheel 640 Mar 20 10:37 bin
# # after
# ❯ ls -lta /usr/local/ | grep bin
# drwxr-xr-x 20 <LDAP> wheel 640 Mar 20 10:37 bin
ls -lta /usr/local/ | grep bin
sudo chown malcolm /usr/local/bin
# if on macos/linux:
# This will install the Slack CLI and all required dependencies, including Deno, the runtime environment for workflow apps. If you have VSCode installed, the VSCode Deno extension will be installed.
curl -fsSL https://downloads.slack-edge.com/slack-cli/install.sh | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment