1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 22:57:46 +00:00

update maintainers

This commit is contained in:
Darren Schroeder 2021-06-26 17:54:13 -05:00
parent cc103b8d70
commit e59db30d96

View file

@ -1,9 +1,18 @@
let m_table = ( let m_table = (
[['name', 'tz', 'time']; ['andres' 'US/Eastern' ' '] ['fdncred' 'US/Central' ' '] ['gedge' 'US/Eastern' ' '] ['jturner' 'NZ' ' '] ['wycats' 'US/Pacific' ' ']] [
['name', 'tz', 'time'];
['andres' 'US/Eastern' ' ']
['fdncred' 'US/Central' ' ']
['gedge' 'US/Eastern' ' ']
['jturner' 'NZ' ' ']
['wycats' 'US/Pacific' ' ']
['kubouch' 'Europe/Helsinki' ' ']
['elferherrera' 'Europe/London' ' ']
]
) )
let now = (date now) let now = (date now)
$m_table | update time { $m_table | update time {
each { |name| each { |name|
$now | date to-timezone ($name | get tz) | date format '%c' $now | date to-timezone ($name | get tz) | date format '%c'
} }
} }