what is the use of the hidden files?

Answer Posted / subhash patil

Hidden files will make u to store your files or data in
hidden mode or invisible mode. so that other user cannot
access your data in your absence. later u can unhide those
files fromt he hidden options.

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the command ' $who | sort –logfile > newfile' do?

772


What is rmdir command?

555


What do chmod command do?

606


What is the difference between cat command and more command?

599


How do I use nslookup?

577






What is {} in find command?

584


What does pipe () return?

597


Write a command that will display files in the current directory, in a colored, long format.

688


What do know about tee command and its usage?

591


What are the commands in UNIX to list the files in a Directory?

620


Can you enlist some commonly used network commands?

602


why metadb requires a seperate slice to create Solaris volume manager

2556


What does this command do,"$more readme.txt“?

693


What is the command to compare two files in unix?

624


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