Showing posts with label linux ls -l. Show all posts
Showing posts with label linux ls -l. Show all posts

Monday, December 30, 2013

Ls command

0 comments

Linux commands - Ls command

List the files in the current directory.

ls -al
List all (-a) the files in the current directory in long (-l) format.

ls *.pdf
List files in the current directory that end with .pdf. The * is a wild-card character that represents any number of characters. The ? is a wild-card character that represents a single character.

ls /home/user
List the files in the directory /home/user.

     
Read more...