Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active November 2, 2015 14:39
Show Gist options
  • Save tkuchiki/f8d02c56c077267b6a0a to your computer and use it in GitHub Desktop.
Save tkuchiki/f8d02c56c077267b6a0a to your computer and use it in GitHub Desktop.
TZ と offset を出力する
$ ./tz.sh
$ ./tz.sh | grep -v ^posix
$ ./tz.sh | grep posix
#!/bin/bash
cd /usr/share/zoneinfo/
for TIMEZONE in $(find . -type f); do
export TZ=$(echo ${TIMEZONE} | sed -e 's|./||')
echo ${TZ} $(date +%z)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment