Showing posts with label Settings Releted. Show all posts
Showing posts with label Settings Releted. Show all posts

Tuesday, January 13, 2015

How to Set system date format DDMMYY Mandriva?

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.