I'm writing a shell script and am confused as to why my date validation code is not working. I tried the following solutions to similar questions I found, but is_valid is always set to 1:
date "+%m/%d/%Y" -d "$1" 2>1 > /dev/null //or.. date -d "2012-02-29" > /dev/null 2>&1 is_valid=$? #always set to 1, even when given a valid date How do I correctly validate the date format? The date should only be valid if in the format MM/DD/YYYY
I also tried this solution: Linux Bash - Date Format but it always rejected the date as well.
date -d "2012-02-29 > /dev/null 2>&1" then "echo $?" I get0`.date --versionprint for you? (BTW, I get the same result as mbratch and Aleksey Izmailov.)MM/DD/YYYYis a very poorly chosen date format -- it's quite ambiguous withDD/MM/YYYY. UsingYYYY-MM-DDsorts properly and is RFC-compliant.