aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/func4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/func b/bin/func
index f8ef010..97688f5 100644
--- a/bin/func
+++ b/bin/func
@@ -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
}
remember that computers suck.