Skip to content

Commit

Permalink
Setup idea command for Intellij Idea.
Browse files Browse the repository at this point in the history
How to setup `idea` command.
  • Loading branch information
villesau authored Oct 27, 2024
1 parent 16ba77c commit fcfe0ef
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions JetBrainsIDEs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ Go to [their website](https://www.jetbrains.com/products.html?fromMenu#type=ide)

Alternatively, use the [Jetbrains Toolbox App](https://www.jetbrains.com/toolbox-app/) to manage product installations.

## Command line usage setup

setup `idea` command:

```sh
sudo mkdir -p /usr/local/bin && echo '#!/bin/sh\n\nopen -na "/Applications/IntelliJ IDEA.app" --args "$@"' | sudo tee /usr/local/bin/idea > /dev/null && sudo chmod +x /usr/local/bin/idea
```

Follows command line setup instructions from here: https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html

## Pricing

If you're a **student** or an **instructor** (teaching staff members) all IDEs from JetBrains are free to use. You can read more on [their website](https://www.jetbrains.com/student/). If you're not a student they still offer a few free Community Edition (CE) IDEs. Check out [IntelliJ](https://www.jetbrains.com/idea/) (Java) or [PyCharm Edu](https://www.jetbrains.com/pycharm-edu/).
Expand Down

0 comments on commit fcfe0ef

Please sign in to comment.