Skip to content

Instantly share code, notes, and snippets.

@shuding
Last active July 29, 2025 12:58
Show Gist options
  • Save shuding/dcc3584988d1a5a7351cae8c51914dbc to your computer and use it in GitHub Desktop.
Save shuding/dcc3584988d1a5a7351cae8c51914dbc to your computer and use it in GitHub Desktop.
Raycast Random Branch
#!/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