Count the number of files

Print

This is a bash command that returns the number of files in a current directory:

ls | wc -l
Linux