linux 下修改 ls 命令显示的时间格式,两种方式。
1.修改ls显示格式
ls -l --time-style '+%Y-%m-%d %H:%M:%S' drwxr-x--- 2 yhm yhm 4096 2019-01-03 21:08:45 phpernote
2.修改配置到bash_profile
vi ~/.bash_profile export TIME_STYLE='+%Y/%m/%d %H:%M:%S' cat ~/.bash_profile | grep TIME source ~/.bash_profile