# # Hiroshi Saito (hiroshi@winpg.jp) # Example: date time for windows. # BEGIN { datex = "date /T"; timex = "time /T"; datex | getline YYYYMMDD; timex | getline HHMM; print YYYYMMDD HHMM; }