how do display only hidden files in unix?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
What is the difference between NFS 3 and NFS 4? What are new features added in NFS4?
What is Process id in unix?
How old is unix?
Is it possible to restrict incoming message?
What are the requirements for a swapper to work?
Which mode executes the fault handler?
Who owns unix?
Explain the following statement, “it is not advisable to use root as the default login.”
How to get the nth word of a line in Unix?
Is learning unix useful?
Is unix a coding language?
1)How to schedule a job,that will periodically execute in second by crontab? 2)I know only second specific time to execute the job. like 10 10 * * * sleep 40&&ps -l>/dev/pts/1 It will execute at 10:10:40 AM but do not know how to execute 15 second,30 second so on at 10:10 am.