Skip to content

Instantly share code, notes, and snippets.

@cufarvid
Last active October 30, 2022 22:08
Show Gist options
  • Save cufarvid/54149deb06c0b1c0a12b800fe7697915 to your computer and use it in GitHub Desktop.
Save cufarvid/54149deb06c0b1c0a12b800fe7697915 to your computer and use it in GitHub Desktop.
Run Webstorm from the terminal on a Mac

Create the file /usr/local/bin/webstorm with the following contents:

#!/bin/sh

open -na "WebStorm.app" --args "$@"

Make the script executable:

chmod +x /usr/local/bin/webstorm

Run webstorm from anywhere in the shell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment