Last active
July 29, 2025 12:58
-
-
Save shuding/dcc3584988d1a5a7351cae8c51914dbc to your computer and use it in GitHub Desktop.
Raycast Random Branch
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 | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Random Branch | |
# @raycast.mode silent | |
# Optional parameters: | |
# @raycast.icon 🎲 | |
# Documentation: | |
# @raycast.author Shu | |
# @raycast.authorURL github.com/shuding | |
str="shu/$(base64 < /dev/urandom | tr -d '+/' | head -c 5)" | |
printf "$str" | pbcopy | |
echo "$str copied to clipboard!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment