How to view the hidden files in /etc directory?

Answer Posted / dipayan

find /etc/* -name ".*"

will show the all hidden files in the /etc directory. All
hidden files start with "." , that's why "find" command
easily finds them.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a bash command?

627


What is the first character of the output in ls l command?

637


What is the search command in unix?

603


What are awk commands?

584


Which unix command to make a new directory?

592






What happens when we execute a unix command?

600


Is grep faster than awk?

561


How do I search a whole word in vim?

693


Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?

591


Are you in or at the office?

611


Explain mount and unmount command.

616


What is grep short for?

557


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1764


Which command should you use to find the remaining disk space in unix server?

709


How do I search for text in vi?

587