113k views
3 votes
Change directory to the directory Desktop and display just the name of all subdirectories and files without the summary information

1 Answer

5 votes

Step-by-step explanation:

$ cd [directory]

Change to directory with absolute path /home/user/Desktop:

$ cd /home/user/Desktop

$ ls

Type ls into Terminal and hit Enter. ls stands for “list files” and will list all the files in your current directory

User Justin Rhoades
by
8.4k points