See scripting examples for more elaborate file listings.
# list all files, with directory indicator, long format
ls -lpa
# list all files, sorted by date, ascending
ls -lpatr
# list all files, sorted by date, most recently accessed
ls -ltru
# list all text files
ls *.txt
|
|