tzselect
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # '@(#)tzselect.ksh 1.7'
  3. # Ask the user about the time zone, and output the resulting TZ value to stdout.
  4. # Interact with the user via stderr and stdin.
  5. # Contributed by Paul Eggert <eggert@twinsun.com>.
  6. # Porting notes:
  7. #
  8. # This script requires several features of the Korn shell.
  9. # If your host lacks the Korn shell,
  10. # you can use either of the following free programs instead:
  11. #
  12. # <a href=ftp://ftp.gnu.org/pub/gnu/>
  13. # Bourne-Again shell (bash)
  14. # </a>
  15. #
  16. # <a href=ftp://ftp.cs.mun.ca/pub/pdksh/pdksh.tar.gz>
  17. # Public domain ksh
  18. # </a>
  19. #
  20. # This script also uses several features of modern awk programs.
  21. # If your host lacks awk, or has an old awk that does not conform to Posix.2,
  22. # you can use either of the following free programs instead:
  23. #
  24. # <a href=ftp://ftp.gnu.org/pub/gnu/>
  25. # GNU awk (gawk)
  26. # </a>
  27. #
  28. # <a href=ftp://ftp.whidbey.net/pub/brennan/>
  29. # mawk
  30. # </a>
  31. # Specify default values for environment variables if they are unset.
  32. : ${AWK=awk}
  33. : ${TZDIR=/usr/share/zoneinfo}
  34. # Check for awk Posix compliance.
  35. ($AWK -v x=y 'BEGIN { exit 123 }') </dev/null >/dev/null 2>&1
  36. [ $? = 123 ] || {
  37. echo >&2 "$0: Sorry, your `$AWK' program is not Posix compatible."
  38. exit 1
  39. }
  40. # Make sure the tables are readable.
  41. TZ_COUNTRY_TABLE=$TZDIR/iso3166.tab
  42. TZ_ZONE_TABLE=$TZDIR/zone.tab
  43. for f in $TZ_COUNTRY_TABLE $TZ_ZONE_TABLE
  44. do
  45. <$f || {
  46. echo >&2 "$0: time zone files are not set up correctly"
  47. exit 1
  48. }
  49. done
  50. newline='
  51. '
  52. IFS=$newline
  53. # Work around a bug in bash 1.14.7 and earlier, where $PS3 is sent to stdout.
  54. case $(echo 1 | (select x in x; do break; done) 2>/dev/null) in
  55. ?*) PS3=
  56. esac
  57. # Begin the main loop.  We come back here if the user wants to retry.
  58. while
  59. echo >&2 'Please identify a location' 
  60. 'so that time zone rules can be set correctly.'
  61. continent=
  62. country=
  63. region=
  64. # Ask the user for continent or ocean.
  65. echo >&2 'Please select a continent or ocean.'
  66. select continent in 
  67.     Africa 
  68.     Americas 
  69.     Antarctica 
  70.     'Arctic Ocean' 
  71.     Asia 
  72.     'Atlantic Ocean' 
  73.     Australia 
  74.     Europe 
  75.     'Indian Ocean' 
  76.     'Pacific Ocean' 
  77.     'none - I want to specify the time zone using the Posix TZ format.'
  78. do
  79.     case $continent in
  80.     '')
  81. echo >&2 'Please enter a number in range.';;
  82.     ?*)
  83. case $continent in
  84. Americas) continent=America;;
  85. *' '*) continent=$(expr "$continent" : '([^ ]*)')
  86. esac
  87. break
  88.     esac
  89. done
  90. case $continent in
  91. '')
  92. exit 1;;
  93. none)
  94. # Ask the user for a Posix TZ string.  Check that it conforms.
  95. while
  96. echo >&2 'Please enter the desired value' 
  97. 'of the TZ environment variable.'
  98. echo >&2 'For example, GST-10 is a zone named GST' 
  99. 'that is 10 hours ahead (east) of UTC.'
  100. read TZ
  101. $AWK -v TZ="$TZ" 'BEGIN {
  102. tzname = "[^-+,0-9][^-+,0-9][^-+,0-9]+"
  103. time = "[0-2]?[0-9](:[0-5][0-9](:[0-5][0-9])?)?"
  104. offset = "[-+]?" time
  105. date = "(J?[0-9]+|M[0-9]+.[0-9]+.[0-9]+)"
  106. datetime = "," date "(/" time ")?"
  107. tzpattern = "^(:.*|" tzname offset "(" tzname 
  108.   "(" offset ")?(" datetime datetime ")?)?)$"
  109. if (TZ ~ tzpattern) exit 1
  110. exit 0
  111. }'
  112. do
  113. echo >&2 "`$TZ' is not a conforming" 
  114. 'Posix time zone string.'
  115. done
  116. TZ_for_date=$TZ;;
  117. *)
  118. # Get list of names of countries in the continent or ocean.
  119. countries=$($AWK -F't' 
  120. -v continent="$continent" 
  121. -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" 
  122. '
  123. /^#/ { next }
  124. $3 ~ ("^" continent "/") {
  125. if (!cc_seen[$1]++) cc_list[++ccs] = $1
  126. }
  127. END {
  128. while (getline <TZ_COUNTRY_TABLE) {
  129. if ($0 !~ /^#/) cc_name[$1] = $2
  130. }
  131. for (i = 1; i <= ccs; i++) {
  132. country = cc_list[i]
  133. if (cc_name[country]) {
  134.   country = cc_name[country]
  135. }
  136. print country
  137. }
  138. }
  139. ' <$TZ_ZONE_TABLE | sort -f)
  140. # If there's more than one country, ask the user which one.
  141. case $countries in
  142. *"$newline"*)
  143. echo >&2 'Please select a country.'
  144. select country in $countries
  145. do
  146.     case $country in
  147.     '') echo >&2 'Please enter a number in range.';;
  148.     ?*) break
  149.     esac
  150. done
  151. case $country in
  152. '') exit 1
  153. esac;;
  154. *)
  155. country=$countries
  156. esac
  157. # Get list of names of time zone rule regions in the country.
  158. regions=$($AWK -F't' 
  159. -v country="$country" 
  160. -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" 
  161. '
  162. BEGIN {
  163. cc = country
  164. while (getline <TZ_COUNTRY_TABLE) {
  165. if ($0 !~ /^#/  &&  country == $2) {
  166. cc = $1
  167. break
  168. }
  169. }
  170. }
  171. $1 == cc { print $4 }
  172. ' <$TZ_ZONE_TABLE)
  173. # If there's more than one region, ask the user which one.
  174. case $regions in
  175. *"$newline"*)
  176. echo >&2 'Please select one of the following' 
  177. 'time zone regions.'
  178. select region in $regions
  179. do
  180. case $region in
  181. '') echo >&2 'Please enter a number in range.';;
  182. ?*) break
  183. esac
  184. done
  185. case $region in
  186. '') exit 1
  187. esac;;
  188. *)
  189. region=$regions
  190. esac
  191. # Determine TZ from country and region.
  192. TZ=$($AWK -F't' 
  193. -v country="$country" 
  194. -v region="$region" 
  195. -v TZ_COUNTRY_TABLE="$TZ_COUNTRY_TABLE" 
  196. '
  197. BEGIN {
  198. cc = country
  199. while (getline <TZ_COUNTRY_TABLE) {
  200. if ($0 !~ /^#/  &&  country == $2) {
  201. cc = $1
  202. break
  203. }
  204. }
  205. }
  206. $1 == cc && $4 == region { print $3 }
  207. ' <$TZ_ZONE_TABLE)
  208. # Make sure the corresponding zoneinfo file exists.
  209. TZ_for_date=$TZDIR/$TZ
  210. <$TZ_for_date || {
  211. echo >&2 "$0: time zone files are not set up correctly"
  212. exit 1
  213. }
  214. esac
  215. # Use the proposed TZ to output the current date relative to UTC.
  216. # Loop until they agree in seconds.
  217. # Give up after 8 unsuccessful tries.
  218. extra_info=
  219. for i in 1 2 3 4 5 6 7 8
  220. do
  221. TZdate=$(LANG=C TZ="$TZ_for_date" date)
  222. UTdate=$(LANG=C TZ=UTC0 date)
  223. TZsec=$(expr "$TZdate" : '.*:([0-5][0-9])')
  224. UTsec=$(expr "$UTdate" : '.*:([0-5][0-9])')
  225. case $TZsec in
  226. $UTsec)
  227. extra_info="
  228. Local time is now: $TZdate.
  229. Universal Time is now: $UTdate."
  230. break
  231. esac
  232. done
  233. # Output TZ info and ask the user to confirm.
  234. echo >&2 ""
  235. echo >&2 "The following information has been given:"
  236. echo >&2 ""
  237. case $country+$region in
  238. ?*+?*) echo >&2 " $country$newline $region";;
  239. ?*+) echo >&2 " $country";;
  240. +) echo >&2 " TZ='$TZ'"
  241. esac
  242. echo >&2 ""
  243. echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
  244. echo >&2 "Is the above information OK?"
  245. ok=
  246. select ok in Yes No
  247. do
  248.     case $ok in
  249.     '') echo >&2 'Please enter 1 for Yes, or 2 for No.';;
  250.     ?*) break
  251.     esac
  252. done
  253. case $ok in
  254. '') exit 1;;
  255. Yes) break
  256. esac
  257. do :
  258. done
  259. case $SHELL in
  260. *csh) file=.login line="setenv TZ '$TZ'";;
  261. *) file=.profile line="TZ='$TZ'; export TZ"
  262. esac
  263. echo >&2 "
  264. You can make this change permanent for yourself by appending the line
  265. $line
  266. to the file '$file' in your home directory; then log out and log in again.
  267. Here is that TZ value again, this time on standard output so that you
  268. can use the $0 command in shell scripts:"
  269. echo "$TZ"