Skip to content

Instantly share code, notes, and snippets.

@avdi
Last active July 5, 2021 19:02
Show Gist options
  • Save avdi/699a6a9f86c25d5012d3310db17f764a to your computer and use it in GitHub Desktop.
Save avdi/699a6a9f86c25d5012d3310db17f764a to your computer and use it in GitHub Desktop.
Pick a random file using Bash (on a mac)
#!/bin/bash
if [[ $# -lt 1 ]]; then
echo "Usage: $0 somedir/*.jpg"
exit 1
fi
files=($*)
let "i = $RANDOM % ${#files[*]}"
pick=${files[$i]}
echo "Draw: $pick"
open $pick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment