Skip to content

Instantly share code, notes, and snippets.

@GokselKUCUKSAHIN
Created April 19, 2025 21:04
Show Gist options
  • Save GokselKUCUKSAHIN/c60d5746052a3ef1223bdad88489da82 to your computer and use it in GitHub Desktop.
Save GokselKUCUKSAHIN/c60d5746052a3ef1223bdad88489da82 to your computer and use it in GitHub Desktop.
#!/bin/bash
GIST_URL="https://gist.githubusercontent.com/GokselKUCUKUCAHIN/30f1240c2a6018c4c97093701ebbffb2/raw/c79e5e6fcf0b3696b43c21c8041c861e8bbe18b9/cursor"
DEST_PATH="/usr/local/bin/cursor"
echo "Downloading cursor script from Gist..."
curl -fsSL "$GIST_URL" -o "$DEST_PATH"
echo "Giving execute permissions to the script..."
chmod +x "$DEST_PATH"
echo "Cursor script installed successfully. You can now run it using 'cursor'."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment