AutoYADM commit: 2025-06-17 20:47:57

This commit is contained in:
Daniel Fichtinger 2025-06-17 20:47:57 -04:00
parent 1f952af0ed
commit 80c399ee03
16 changed files with 476 additions and 131 deletions

View file

@ -0,0 +1,7 @@
function dfmt --description 'Format date for task'
if not date -d "$argv" +%Y-%m-%dT%H:%M &>/dev/null
date +%Y-%m-%dT%H:%M
else
date -d "$argv" +%Y-%m-%dT%H:%M
end
end