This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
invoice : 00001 | |
date_gen : 2012-02-14T13:07:01 | |
date_pub : | |
date_sent: | |
date_paid: | |
customer: | |
name : Nombre | |
contact: Contacto | |
address: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash | |
# unix, os x, ubuntu | |
# List directory ordered by modified date | |
ls -ltr | |
# -l long listing giving details about files and directories | |
# -t sort by time modified instead of name | |
# -r, reverse order while sorting | |