diff options
-rw-r--r-- | bin/func | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,9 +67,9 @@ __get_value_date_human() { # 1: filename # Get a human readable date from a file and return a safe string. if [ "${uname}" = "Linux" ]; then - __get_value_date "${1}" | xargs date +"%B %d, %Y" -d + __get_value_date "${1}" | xargs date +"%d %b %Y" -d else - __get_value_date "${1}" | xargs date -j -f "%Y-%m-%d" +"%B %d, %Y" + __get_value_date "${1}" | xargs date -j -f "%Y-%m-%d" +"%d %b %Y" fi } |