mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-07-30 13:47:46 +00:00

This PR is part of porting all old scripts #221 and ports all root `before_v0.60/*.nu` scripts to `modules/*.nu`
18 lines
440 B
Text
18 lines
440 B
Text
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'
|
|
}
|
|
|