Skip to content

Instantly share code, notes, and snippets.

@kosmolot
Created January 21, 2018 07:51
Show Gist options
  • Save kosmolot/d5d99792bc515562bcac3cfc9ea9aefa to your computer and use it in GitHub Desktop.
Save kosmolot/d5d99792bc515562bcac3cfc9ea9aefa to your computer and use it in GitHub Desktop.
Get a random timezone
#!usr/bin/env bash
rand_tz() {
list=`find /usr/share/zoneinfo/ -regex "[a-zA-Z0-9/-]+" -type f`
randf=`shuf -n1 -e $list`
prefix=/usr/share/zoneinfo/
echo ${randf#$prefix}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment