mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Prints the current date as a path for use when creating content within
|
||
|
# a directory file structure that models chronological data. Accepts
|
||
|
# anything that can be passed to `date -d`.
|
||
|
|
||
|
date +%4Y/%m/%d "-d $@"
|
||
|
|