how do display only hidden files in unix?

Answers were Sorted based on User's Feedback



how do display only hidden files in unix?..

Answer / amedela chandra sekhar

ls -a|grep "^\."

Is This Answer Correct ?    63 Yes 6 No

how do display only hidden files in unix?..

Answer / sarvan

Hidden files will start a period (.) in their names. To
list them use -a option of ls command.

like, ls -ltra

Is This Answer Correct ?    29 Yes 18 No

how do display only hidden files in unix?..

Answer / guest

ls -a

Is This Answer Correct ?    35 Yes 24 No

how do display only hidden files in unix?..

Answer / chelios

Minimalistic form:
ls -a | grep '\.'

Really people, 'only hidden' means 'only hidden', not 'also hidden'...

Is This Answer Correct ?    8 Yes 6 No

how do display only hidden files in unix?..

Answer / ashutosh gupta

ls -a|grep "^\."

Is This Answer Correct ?    1 Yes 0 No

how do display only hidden files in unix?..

Answer / qwertz

Even more minimalistic:
ls -lad .*

Is This Answer Correct ?    0 Yes 0 No

how do display only hidden files in unix?..

Answer / qwertz

And the most minimalistic:
echo .*


:-)

Is This Answer Correct ?    0 Yes 0 No

how do display only hidden files in unix?..

Answer / kirus

ls-a

Is This Answer Correct ?    1 Yes 2 No

how do display only hidden files in unix?..

Answer / ram

In unix, hidden files are started with .
But whenever checking for hidden files, we should consider
the two extra ordinary files in evry directory.
'.' and '..'
. denotes to the present working direcory
.. denotes to the previous/parent directory
For filtering only for hidden files use
ls -la .??*

But this will consider the hidden files have length > 2.
So if a hidden file with one letter wont appear.

Is This Answer Correct ?    0 Yes 1 No

how do display only hidden files in unix?..

Answer / unix expert

He wrote correct answer(2).who stupid given "NO".
Before giving "no' u should check correct or not .

simply don't tell 'NO'

Is This Answer Correct ?    6 Yes 12 No

Post New Answer

More Unix General Interview Questions

What is a "parameter card" and what is useful for?

1 Answers   Accenture,


How do you make programs portable on unix and dos under such circumstances?

1 Answers  


What are the benefits of running processes in the background?

1 Answers  


What is unix inode?

1 Answers  


How is unix different from linux?

1 Answers  


What is unix operating system used for?

1 Answers  


Consider a TCP echo client which blocks on fgets which read input from standard input. If now the corresponding server process crashes, what will client TCP kernel receive? Can the client process receive that? Why or why not? How you solve the above problem?

1 Answers  


How the Kernel handles the fork() system call in traditional Unix and in the System V Unix, while swapping?

1 Answers  


What does ls mean in unix?

1 Answers  


How do I create a directory in unix?

1 Answers  


What is $# in unix?

1 Answers  


What is wild-card interpretation?

1 Answers  


Categories