How to Set system date format in ddmmyy
Currently my system date format is mmddyy i need change to ddmmyy and persistent it.
NOTE :- If i change the system date using below command.
date +"%d%m%y"
after restart system date format is not change. it takes old format. (MMDDYY).
It's very important for me.
___________________________________________________________________________________
For change date format permanently, you can create alias for date command in the "bashrc" file.
alias date='date +"%d%m%y"'
It will work for you.
alias date='date +"%d%m%y"'
It will work for you.
No comments:
Post a Comment