mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-11 11:15:13 -04:00
9 lines
No EOL
169 B
Bash
9 lines
No EOL
169 B
Bash
#!/bin/sh
|
|
|
|
# Set a random timezone
|
|
TZ_SIGN=$( echo "+:-" | cut -d: -f "$( shuf -i 1-2 -n 1 )" )
|
|
TZ=UTC${TZ_SIGN}$( shuf -i 0-24 -n1 )
|
|
|
|
export TZ
|
|
|
|
echo "Set TZ to: ${TZ}" |