nix/home/program/bash/module/Date.nix

14 lines
179 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
text = ''
# Print today date in yyyyMMdd format.
function today() {
date +%Y%m%d
}
2024-04-06 03:03:58 +03:00
2024-11-04 04:37:29 +03:00
# Current day of week number.
function dow() {
date +%u
}
'';
2024-04-06 03:03:58 +03:00
}