Created
April 19, 2025 21:04
-
-
Save GokselKUCUKSAHIN/c60d5746052a3ef1223bdad88489da82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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