mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
4 lines
112 B
Plaintext
4 lines
112 B
Plaintext
# date convert - convert mmddyy into yymmdd in $1
|
|
|
|
{ $1 = substr($1,5,2) substr($1,1,2) substr($1,3,2); print }
|