Skip to content

Instantly share code, notes, and snippets.

@jimmason
Created August 18, 2022 16:40
Show Gist options
  • Save jimmason/35c2870759d24c435890e3d883f30738 to your computer and use it in GitHub Desktop.
Save jimmason/35c2870759d24c435890e3d883f30738 to your computer and use it in GitHub Desktop.
instructions for adding a terminal script for jetbrains rider on osx.
The official intructions at https://www.jetbrains.com/help/rider/Working_with_the_IDE_Features_from_Command_Line.html#toolbox offers little hope for lost souls
1. sudo nano /usr/local/bin/rider
2. put this in it
#!/bin/sh
open -na "Rider.app" --args "$@"
3. save it
4. chmod u+rx /usr/local/bin/rider
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment