nu_scripts/modules/maintainer_time.nu
Igor a0e69735ed
Port root before_v0.60/*.nu scripts (issue #221) (#837)
This PR is part of porting all old scripts #221 and ports all root
`before_v0.60/*.nu` scripts to `modules/*.nu`
2024-05-13 09:54:10 -04:00

19 lines
440 B
Plaintext

let m_table = (
[
['name', 'tz', 'time'];
['andres' 'America/Guayaquil' ' ']
['fdncred' 'US/Central' ' ']
['gedge' 'US/Eastern' ' ']
['jt' 'NZ' ' ']
['wycats' 'US/Pacific' ' ']
['kubouch' 'Europe/Helsinki' ' ']
['elferherrera' 'Europe/London' ' ']
['storm' 'US/Pacific' ' ']
]
)
let now = (date now)
$m_table | update time {|row|
$now | date to-timezone ($row | get tz) | format date '%c'
}