1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-30 08:01:07 +02:00
mu/build-aux/date.py

10 lines
245 B
Python
Raw Normal View History

#!/bin/env python
#The MacOS 'date' is not quite up to GNU standards
import sys
from datetime import datetime
date=datetime.strptime(sys.argv[1],'%Y-%m-%d')
print(date.strftime(sys.argv[2]))
#
# ./date.py 2023-10-14 "The year-month is %y %m"
#