mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
17 lines
665 B
Text
17 lines
665 B
Text
end {
|
|
|
|
print "---------------------------------------------------------------- TIMEZONE";
|
|
print "TZ is", ENV["TZ"];
|
|
|
|
print "---------------------------------------------------------------- STRFTIME_LOCAL";
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%S");
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%3S");
|
|
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%S %Z");
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%S %z");
|
|
print strftime_local(0.123456, "%Y-%m-%d %H:%M:%S %Z");
|
|
print strftime_local(0.123456, "%Y-%m-%d %H:%M:%S %z");
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%S %Z");
|
|
print strftime_local(0.0, "%Y-%m-%d %H:%M:%S %z");
|
|
|
|
}
|