PATH:
usr
/
bin
#!/usr/bin/bash PKGVERSION="(GNU libc) " TZVERSION="2.17" REPORT_BUGS_TO="<http://www.gnu.org/software/libc/bugs.html>" # Ask the user about the time zone, and output the resulting TZ value to stdout. # Interact with the user via stderr and stdin. # Contributed by Paul Eggert. # Porting notes: # # This script requires a Posix-like shell with the extension of a # 'select' statement. The 'select' statement was introduced in the # Korn shell and is available in Bash and other shell implementations. # If your host lacks both Bash and the Korn shell, you can get their # source from one of these locations: # # Bash <http://www.gnu.org/software/bash/bash.html> # Korn Shell <http://www.kornshell.com/> # Public Domain Korn Shell <http://www.cs.mun.ca/~michael/pdksh/> # # This script also uses several features of modern awk programs. # If your host lacks awk, or has an old awk that does not conform to Posix, # you can use either of the following free programs instead: # # Gawk (GNU awk) <http://www.gnu.org/software/gawk/> # mawk <http://invisible-island.net/mawk/> # Specify default values for environment variables if they are unset. : ${AWK=awk} : ${TZDIR=/usr/share/zoneinfo} # Check for awk Posix compliance. ($AWK -v x=y 'BEGIN { exit 123 }') </dev/null >/dev/null 2>&1 [ $? = 123 ] || { echo >&2 "$0: Sorry, your \`$AWK' program is not Posix compatible." exit 1 } if [ "$1" = "--help" ]; then cat <<EOF Usage: tzselect Select a time zone interactively. Report bugs to $REPORT_BUGS_TO. EOF exit elif [ "$1" = "--version" ]; then cat <<EOF tzselect $PKGVERSION$TZVERSION EOF exit fi # Make sure the tables are readable. TZ_COUNTRY_TABLE=$TZDIR/iso3166.tab TZ_ZONE_TABLE=$TZDIR/zone.tab for f in $TZ_COUNTRY_TABLE $TZ_ZONE_TABLE do <$f || { echo >&2 "$0: time zone files are not set up correctly" exit 1 } done newline=' ' IFS=$newline # Work around a bug in bash 1.14.7 and earlier, where $PS3 is sent to stdout. case $(echo 1 | (select x in x; do break; done) 2>/dev/null) in ?*) PS3= esac # Begin the main loop. We come back here if the user wants to retry. while echo >&2 'Please identify a location' \ 'so that time zone rules can be set correctly.' continent= country= region= # Ask the user for continent or ocean. echo >&2 'Please select a continent or ocean.' select continent in \ Africa \ Americas \ Antarctica \ 'Arctic Ocean' \ Asia \ 'Atlantic Ocean' \ Australia \ Europe \ 'Indian Ocean' \ 'Pacific Ocean' \ 'none - I want to specify the time zone using the Posix TZ format.' do case $continent in '') echo >&2 'Please enter a number in range.';; ?*) case $continent in Americas) continent=America;; *' '*) continent=$(expr "$continent" : '\([^ ]*\)') esac break esac done case $continent in '') exit 1;; none) # Ask the user for a Posix TZ string. Check that it conforms. while echo >&2 'Please enter the desired value' \ 'of the TZ environment variable.' echo >&2 'For example, GST-10 is a zone named GST' \ 'that is 10 hours ahead (east) of UTC.' read TZ $AWK -v TZ="$TZ" 'BEGIN { tzname = "[^-+,0-9][^-+,0-9][^-+,0-9]+" time = "[0-2]?[0-9](:[0-5][0-9](:[0-5][0-9])?)?" offset = "[-+]?" time date = "(J?[0-9]+|M[0-9]+\.[0-9]+\.[0-9]+)" datetime = "," date "(/" time ")?" tzpattern = "^(:.*|" tzname offset "(" tzname \ "(" offset ")?(" datetime datetime ")?)?)$" if (TZ ~ tzpattern) exit 1 exit 0 }' do echo >&2 "\`$TZ' is not a conforming" \ 'Posix time zone string.' done TZ_for_date=$TZ;; *) # Get list of names of countries in the continent or ocean. countries=$($AWK -F'\t' \ -v continent="$continent" \ -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" \ ' /^#/ { next } $3 ~ ("^" continent "/") { if (!cc_seen[$1]++) cc_list[++ccs] = $1 } END { while (getline <TZ_COUNTRY_TABLE) { if ($0 !~ /^#/) cc_name[$1] = $2 } for (i = 1; i <= ccs; i++) { country = cc_list[i] if (cc_name[country]) { country = cc_name[country] } print country } } ' <$TZ_ZONE_TABLE | sort -f) # If there's more than one country, ask the user which one. case $countries in *"$newline"*) echo >&2 'Please select a country.' select country in $countries do case $country in '') echo >&2 'Please enter a number in range.';; ?*) break esac done case $country in '') exit 1 esac;; *) country=$countries esac # Get list of names of time zone rule regions in the country. regions=$($AWK -F'\t' \ -v country="$country" \ -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" \ ' BEGIN { cc = country while (getline <TZ_COUNTRY_TABLE) { if ($0 !~ /^#/ && country == $2) { cc = $1 break } } } $1 == cc { print $4 } ' <$TZ_ZONE_TABLE) # If there's more than one region, ask the user which one. case $regions in *"$newline"*) echo >&2 'Please select one of the following' \ 'time zone regions.' select region in $regions do case $region in '') echo >&2 'Please enter a number in range.';; ?*) break esac done case $region in '') exit 1 esac;; *) region=$regions esac # Determine TZ from country and region. TZ=$($AWK -F'\t' \ -v country="$country" \ -v region="$region" \ -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" \ ' BEGIN { cc = country while (getline <TZ_COUNTRY_TABLE) { if ($0 !~ /^#/ && country == $2) { cc = $1 break } } } $1 == cc && $4 == region { print $3 } ' <$TZ_ZONE_TABLE) # Make sure the corresponding zoneinfo file exists. TZ_for_date=$TZDIR/$TZ <$TZ_for_date || { echo >&2 "$0: time zone files are not set up correctly" exit 1 } esac # Use the proposed TZ to output the current date relative to UTC. # Loop until they agree in seconds. # Give up after 8 unsuccessful tries. extra_info= for i in 1 2 3 4 5 6 7 8 do TZdate=$(LANG=C TZ="$TZ_for_date" date) UTdate=$(LANG=C TZ=UTC0 date) TZsec=$(expr "$TZdate" : '.*:\([0-5][0-9]\)') UTsec=$(expr "$UTdate" : '.*:\([0-5][0-9]\)') case $TZsec in $UTsec) extra_info=" Local time is now: $TZdate. Universal Time is now: $UTdate." break esac done # Output TZ info and ask the user to confirm. echo >&2 "" echo >&2 "The following information has been given:" echo >&2 "" case $country+$region in ?*+?*) echo >&2 " $country$newline $region";; ?*+) echo >&2 " $country";; +) echo >&2 " TZ='$TZ'" esac echo >&2 "" echo >&2 "Therefore TZ='$TZ' will be used.$extra_info" echo >&2 "Is the above information OK?" ok= select ok in Yes No do case $ok in '') echo >&2 'Please enter 1 for Yes, or 2 for No.';; ?*) break esac done case $ok in '') exit 1;; Yes) break esac do : done case $SHELL in *csh) file=.login line="setenv TZ '$TZ'";; *) file=.profile line="TZ='$TZ'; export TZ" esac echo >&2 " You can make this change permanent for yourself by appending the line $line to the file '$file' in your home directory; then log out and log in again. Here is that TZ value again, this time on standard output so that you can use the $0 command in shell scripts:" echo "$TZ"
[+]
..
[-] pod2html
[edit]
[-] mysqlcheck
[edit]
[-] passwd
[edit]
[-] scl_enabled
[edit]
[-] hostname
[edit]
[-] basename
[edit]
[-] git
[edit]
[-] timeout
[edit]
[-] pfbtopfa
[edit]
[-] tmpwatch
[edit]
[-] autoconf
[edit]
[-] sh
[edit]
[-] precat
[edit]
[-] zipgrep
[edit]
[-] mkdir
[edit]
[-] perlivp
[edit]
[-] strings
[edit]
[-] look
[edit]
[-] bashbug-64
[edit]
[-] zcat
[edit]
[-] sha1sum
[edit]
[-] cpp
[edit]
[-] identify
[edit]
[-] s2p
[edit]
[-] logname
[edit]
[-] git-upload-archive
[edit]
[-] sprof
[edit]
[-] perlbug
[edit]
[-] Wand-config
[edit]
[-] import
[edit]
[-] iconv
[edit]
[-] batch
[edit]
[-] ipcs
[edit]
[-] gsnd
[edit]
[-] find
[edit]
[-] Mail
[edit]
[-] gcc
[edit]
[-] pango-querymodules-64
[edit]
[-] aclocal-1.13
[edit]
[-] lesspipe.sh
[edit]
[-] ps2pdfwr
[edit]
[-] bash
[edit]
[-] uniq
[edit]
[-] fc-validate
[edit]
[-] fc-match
[edit]
[-] link
[edit]
[-] slabtop
[edit]
[-] find2perl
[edit]
[-] gpg
[edit]
[-] znew
[edit]
[-] gzip
[edit]
[-] tset
[edit]
[-] watch
[edit]
[-] ifnames
[edit]
[-] zfgrep
[edit]
[-] column
[edit]
[-] echo
[edit]
[-] which
[edit]
[-] df
[edit]
[-] xsubpp
[edit]
[-] gslj
[edit]
[-] gawk
[edit]
[-] view
[edit]
[-] troff
[edit]
[-] display
[edit]
[-] igawk
[edit]
[-] tac
[edit]
[-] nm
[edit]
[-] ps2pdf13
[edit]
[-] false
[edit]
[-] pmap
[edit]
[-] ps2pdf12
[edit]
[-] run-with-aspell
[edit]
[-] mysqlbinlog
[edit]
[-] gpg2
[edit]
[-] screen
[edit]
[-] geqn
[edit]
[-] free
[edit]
[-] setsid
[edit]
[-] post-grohtml
[edit]
[-] expand
[edit]
[-] diff
[edit]
[-] rmdir
[edit]
[-] hostid
[edit]
[-] mysqlimport
[edit]
[-] less
[edit]
[-] c++filt
[edit]
[-] ul
[edit]
[-] du
[edit]
[-] nsupdate
[edit]
[-] git-upload-pack
[edit]
[-] gpgv
[edit]
[-] egrep
[edit]
[-] hunspell
[edit]
[-] lex
[edit]
[-] colrm
[edit]
[-] prezip-bin
[edit]
[-] wc
[edit]
[-] skill
[edit]
[-] unexpand
[edit]
[-] groups
[edit]
[-] pango-view
[edit]
[-] login
[edit]
[-] soelim
[edit]
[-] pr
[edit]
[-] rename
[edit]
[-] who
[edit]
[-] zless
[edit]
[-] cut
[edit]
[-] selectorctl
[edit]
[-] arch
[edit]
[-] scp
[edit]
[-] size
[edit]
[-] gprof
[edit]
[-] dirname
[edit]
[-] rnano
[edit]
[-] ssh-agent
[edit]
[-] ghostscript
[edit]
[-] compare
[edit]
[-] lessecho
[edit]
[-] conjure
[edit]
[-] pdf2dsc
[edit]
[-] utmpdump
[edit]
[-] pphs
[edit]
[-] pf2afm
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] autoscan
[edit]
[-] fc-conflist
[edit]
[-] dvipdf
[edit]
[-] tclsh8.5
[edit]
[-] atq
[edit]
[-] date
[edit]
[-] sqlite3
[edit]
[-] paste
[edit]
[-] stat
[edit]
[-] python2.7
[edit]
[-] perl5.16.3
[edit]
[-] strace
[edit]
[-] freetype-config
[edit]
[-] grotty
[edit]
[-] cc
[edit]
[-] nroff
[edit]
[-] flex++
[edit]
[-] join
[edit]
[-] grep
[edit]
[-] dbiprof
[edit]
[-] toe
[edit]
[-] ssh-keygen
[edit]
[-] rvi
[edit]
[-] ptx
[edit]
[-] ipcrm
[edit]
[-] reset
[edit]
[-] openssl
[edit]
[-] mesg
[edit]
[-] snice
[edit]
[-] pathchk
[edit]
[-] bzdiff
[edit]
[-] pod2latex
[edit]
[-] vdir
[edit]
[-] nice
[edit]
[-] ispell
[edit]
[-] delv
[edit]
[-] dbiproxy
[edit]
[-] funzip
[edit]
[-] gpg-error
[edit]
[-] pl2pm
[edit]
[-] tload
[edit]
[-] zipnote
[edit]
[-] gsoelim
[edit]
[-] chrt
[edit]
[-] objdump
[edit]
[-] pstruct
[edit]
[-] whereis
[edit]
[-] convert
[edit]
[-] zipinfo
[edit]
[-] id
[edit]
[-] gtbl
[edit]
[-] objcopy
[edit]
[-] getent
[edit]
[-] catchsegv
[edit]
[-] nproc
[edit]
[-] mkfifo
[edit]
[-] test
[edit]
[-] addr2line
[edit]
[-] gzexe
[edit]
[-] namei
[edit]
[-] infocmp
[edit]
[-] dir
[edit]
[-] sdiff
[edit]
[-] script
[edit]
[-] comm
[edit]
[-] stream
[edit]
[-] touch
[edit]
[-] c++
[edit]
[-] gtar
[edit]
[-] kill
[edit]
[-] rev
[edit]
[-] rm
[edit]
[-] pwdx
[edit]
[-] zmore
[edit]
[-] pod2man
[edit]
[-] montage
[edit]
[-] splain
[edit]
[-] mv
[edit]
[-] awk
[edit]
[-] ssh-add
[edit]
[-] stty
[edit]
[-] bzmore
[edit]
[-] chmod
[edit]
[-] gpg-agent
[edit]
[-] wget
[edit]
[-] dig
[edit]
[-] printf
[edit]
[-] pkill
[edit]
[-] g++
[edit]
[-] gpic
[edit]
[-] infotocap
[edit]
[-] shred
[edit]
[-] ps2epsi
[edit]
[-] net-snmp-create-v3-user
[edit]
[-] gsdj
[edit]
[-] raw
[edit]
[-] unzipsfx
[edit]
[-] animate
[edit]
[-] grops
[edit]
[-] spell
[edit]
[-] gcc-ar
[edit]
[-] bzless
[edit]
[-] mailx
[edit]
[-] xsltproc
[edit]
[-] uapi
[edit]
[-] mysqldump
[edit]
[-] pinky
[edit]
[-] yes
[edit]
[-] ldd
[edit]
[-] pinentry-curses
[edit]
[-] stdbuf
[edit]
[-] pod2text
[edit]
[-] split
[edit]
[-] tar
[edit]
[-] fc-list
[edit]
[-] scl
[edit]
[-] pgrep
[edit]
[-] logger
[edit]
[-] chcon
[edit]
[-] zdiff
[edit]
[-] h2xs
[edit]
[-] more
[edit]
[-] top
[edit]
[-] realpath
[edit]
[-] bzgrep
[edit]
[-] psed
[edit]
[-] setterm
[edit]
[-] od
[edit]
[-] rview
[edit]
[-] mktemp
[edit]
[-] gem
[edit]
[-] col
[edit]
[-] xmllint
[edit]
[-] gslp
[edit]
[-] composite
[edit]
[-] nano
[edit]
[-] podchecker
[edit]
[-] gnroff
[edit]
[-] Magick-config
[edit]
[-] eps2eps
[edit]
[-] cpan
[edit]
[-] ps2pdf14
[edit]
[-] neqn
[edit]
[-] ranlib
[edit]
[-] autoheader
[edit]
[-] gpgsplit
[edit]
[-] pwd
[edit]
[-] flock
[edit]
[-] chgrp
[edit]
[-] geoiplookup
[edit]
[-] unix-lpr.sh
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] aclocal
[edit]
[-] zsoelim
[edit]
[-] php
[edit]
[-] expr
[edit]
[-] xmlwf
[edit]
[-] sftp
[edit]
[-] fmt
[edit]
[-] piconv
[edit]
[-] tail
[edit]
[-] pydoc
[edit]
[-] bison
[edit]
[-] nl
[edit]
[-] pic
[edit]
[-] pkg-config
[edit]
[-] libnetcfg
[edit]
[-] shuf
[edit]
[-] gunzip
[edit]
[-] lesskey
[edit]
[-] file
[edit]
[-] cp
[edit]
[-] snmpconf
[edit]
[-] ar
[edit]
[-] users
[edit]
[-] c99
[edit]
[-] host
[edit]
[-] crontab
[edit]
[-] mogrify
[edit]
[-] gcc-ranlib
[edit]
[-] c2ph
[edit]
[-] vi
[edit]
[-] readelf
[edit]
[-] gcc-nm
[edit]
[-] git-shell
[edit]
[-] automake-1.13
[edit]
[-] python
[edit]
[-] ld
[edit]
[-] sed
[edit]
[-] sync
[edit]
[-] diff3
[edit]
[-] a2p
[edit]
[-] taskset
[edit]
[-] tput
[edit]
[-] cagefs_enter.proxied
[edit]
[-] zcmp
[edit]
[-] fgrep
[edit]
[-] env
[edit]
[-] autom4te
[edit]
[-] make
[edit]
[-] curl
[edit]
[-] cksum
[edit]
[-] fc-cat
[edit]
[-] bunzip2
[edit]
[-] gcov
[edit]
[-] ld.bfd
[edit]
[-] locale
[edit]
[-] python2
[edit]
[-] cldetect
[edit]
[-] podselect
[edit]
[-] perlthanks
[edit]
[-] sha256sum
[edit]
[-] sha224sum
[edit]
[-] tsort
[edit]
[-] ionice
[edit]
[-] agentxtrap
[edit]
[-] nohup
[edit]
[-] h2ph
[edit]
[-] captoinfo
[edit]
[-] zipcloak
[edit]
[-] cal
[edit]
[-] instmodsh
[edit]
[-] tbl
[edit]
[-] fc-scan
[edit]
[-] fc-query
[edit]
[-] ex
[edit]
[-] GET
[edit]
[-] replace
[edit]
[-] ls
[edit]
[-] pango-list
[edit]
[-] gpgv2
[edit]
[-] ps2ps2
[edit]
[-] numfmt
[edit]
[-] gmake
[edit]
[-] lprsetup.sh
[edit]
[-] dd
[edit]
[-] printafm
[edit]
[-] idn
[edit]
[-] head
[edit]
[-] fc-pattern
[edit]
[-] xargs
[edit]
[-] tic
[edit]
[-] chown
[edit]
[-] printenv
[edit]
[-] mysql
[edit]
[-] csplit
[edit]
[-] install
[edit]
[-] prezip
[edit]
[-] getconf
[edit]
[-] eqn
[edit]
[-] bzip2
[edit]
[-] at
[edit]
[-] perldoc
[edit]
[-] fc-cache
[edit]
[-] ps2ps
[edit]
[-] sleep
[edit]
[-] gpg-zip
[edit]
[-] vmstat
[edit]
[-] prove
[edit]
[-] base64
[edit]
[-] uname
[edit]
[-] as
[edit]
[-] ping
[edit]
[-] pre-grohtml
[edit]
[-] unlink
[edit]
[-] fold
[edit]
[-] gsbj
[edit]
[-] perl
[edit]
[-] tabs
[edit]
[-] clear
[edit]
[-] mysqladmin
[edit]
[-] aspell
[edit]
[-] colcrt
[edit]
[-] libtool
[edit]
[-] libtoolize
[edit]
[-] slogin
[edit]
[-] dircolors
[edit]
[-] ln
[edit]
[-] groff
[edit]
[-] tclsh
[edit]
[-] preunzip
[edit]
[-] uptime
[edit]
[-] perlml
[edit]
[-] getopt
[edit]
[-] zforce
[edit]
[-] gneqn
[edit]
[-] ssh
[edit]
[-] readlink
[edit]
[-] mdig
[edit]
[-] enchant
[edit]
[-] m4
[edit]
[-] tzselect
[edit]
[-] ruby
[edit]
[-] gencat
[edit]
[-] cat
[edit]
[-] gs
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] nslookup
[edit]
[-] unzip
[edit]
[-] sha512sum
[edit]
[-] bzip2recover
[edit]
[-] autoupdate
[edit]
[-] gtroff
[edit]
[-] mail
[edit]
[-] git-receive-pack
[edit]
[-] MagickCore-config
[edit]
[-] isosize
[edit]
[-] pod2usage
[edit]
[-] localedef
[edit]
[-] mysql_config
[edit]
[-] MagickWand-config
[edit]
[-] tr
[edit]
[-] tty
[edit]
[-] tailf
[edit]
[-] ps2pdf
[edit]
[-] enchant-lsmod
[edit]
[-] word-list-compress
[edit]
[-] crontab.cagefs
[edit]
[-] pdf2ps
[edit]
[-] scl_source
[edit]
[-] sum
[edit]
[-] bzcmp
[edit]
[-] hexdump
[edit]
[-] truncate
[edit]
[-] ps2ascii
[edit]
[-] zip
[edit]
[-] cmp
[edit]
[-] zipsplit
[edit]
[-] seq
[edit]
[-] zgrep
[edit]
[-] ps
[edit]
[-] true
[edit]
[-] mknod
[edit]
[-] mysqlshow
[edit]
[-] autoreconf
[edit]
[-] flex
[edit]
[-] patch
[edit]
[-] my_print_defaults
[edit]
[-] renice
[edit]
[-] gsdj500
[edit]
[-] fc-cache-64
[edit]
[-] geoiplookup6
[edit]
[-] ssh-keyscan
[edit]
[-] c89
[edit]
[-] rpcgen
[edit]
[-] tee
[edit]
[-] automake
[edit]
[-] bzcat
[edit]
[-] whoami
[edit]
[-] sha384sum
[edit]
[-] runcon
[edit]
[-] ssh-copy-id
[edit]
[-] strip
[edit]
[-] md5sum
[edit]
[-] sort
[edit]
[-] zegrep
[edit]
[-] factor
[edit]
[-] pinentry
[edit]
[-] mysql_config-64
[edit]
[-] pgawk
[edit]
[-] [
[edit]
[-] mcookie
[edit]
[-] atrm
[edit]
[-] xmlcatalog
[edit]