List all files in the current directory:
ls
List all files that end in .tex:
ls *.tex
List all files including hidden ones that start with a dot:
ls -a
Give the sizes of files in kilobytes:
ls -s
Give the long form with permissions and modification date:
ls -l