How do you list the files in an UNIX directory while also
showing hidden files?
Answers were Sorted based on User's Feedback
Answer / srinath.p
$ls -Ra
This command shows all the hidden files in the directory
and all of it's subdirectories.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / suchitra
ls-a
will give all the files including hidden files
ls-R
which will give u the sub directories in the current
directory
hence to list both the subdirectories and the hidden file
list give
ls-aR
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / upendar
ls -a
-It will give all the Files and Sub Directories including Hidden files.
ls -r
- It will give all the files in Descending or Reverse order.
| Is This Answer Correct ? | 1 Yes | 2 No |
What is grep and how do you use it?
What is the difference between AWK and SED commands? Plz give example and explain...
Enlist some filename manipulation commands in unix.
Who command in unix operating system?
Write a command that will display files in the current directory, in a colored, long format.
What is a bash command?
What is the difference between cat and more command?
What command will change your prompt to myprompt?
How to display a file name which has zero bytes in size.
What does mkdir up2date; touch outdated up2date do?
Is command prompt unix?
What is command substitution?