diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-07-01 18:17:38 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-07-01 18:17:38 -0400 |
commit | 55f9bd8d5226eb49f5899c5ddca89c655ef96e9b (patch) | |
tree | 53096770e331f2d571fc9e49af5000cfed1fa0d8 /bin/dateify | |
parent | e4109fab0bece003dc53c78c7cc8608b68328312 (diff) |
stuff
Diffstat (limited to 'bin/dateify')
-rwxr-xr-x | bin/dateify | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/dateify b/bin/dateify new file mode 100755 index 0000000..7aefdd9 --- /dev/null +++ b/bin/dateify @@ -0,0 +1,14 @@ +#!/usr/bin/sed -rf +s/\b([0-9]{2})-([A-Z][a-z][a-z])-([0-9]{4})(\b|T|_)/\3-\2-\1\4/ +s/Jan/01/ +s/Feb/02/ +s/Mar/03/ +s/Apr/04/ +s/May/05/ +s/Jun/06/ +s/Jul/07/ +s/Aug/08/ +s/Sep/09/ +s/Oct/10/ +s/Nov/11/ +s/Dec/12/ |