Will rm -r* removes hidden files?

Answers were Sorted based on User's Feedback



Will rm -r* removes hidden files?..

Answer / sathya

rm .* will remove all hidden files

Is This Answer Correct ?    8 Yes 3 No

Will rm -r* removes hidden files?..

Answer / wizard_cmp@yahoo.co.in

No. will get an error.

Is This Answer Correct ?    5 Yes 3 No

Will rm -r* removes hidden files?..

Answer / jennie

find the hidden files by doing ls -lat
and then use rm <filename>

Is This Answer Correct ?    1 Yes 0 No

Will rm -r* removes hidden files?..

Answer / anandhi

$rm –rf .??*


With the option –rf and the use " .??* " will remove/delete
all hidden files/directory. The initial " . " indicates
a 'hidden' file and the " ?? " match at least two
characters to exclude the parent-directory which is " .. "
and to remove or delete everything the " * " will match all
number or characters that used for files or directory name.

Is This Answer Correct ?    1 Yes 0 No

Will rm -r* removes hidden files?..

Answer / shan, chennai

Not at all agree. Will post you once I get the command for
that.

Shan, Chennai

Is This Answer Correct ?    0 Yes 0 No

Will rm -r* removes hidden files?..

Answer / abhijit (pune)

No, it will not delete hidden files.
but, rm -f .* will definately removes the hidden files in
that perticular directory.

Is This Answer Correct ?    0 Yes 0 No

Will rm -r* removes hidden files?..

Answer / jagadeesh kumar.k[tpgsi]

NO

Is This Answer Correct ?    0 Yes 1 No

Will rm -r* removes hidden files?..

Answer / viswa

The command rm -r * will not delte the hidden files. The
command will delte all the normal(unhidden) files and
direcotories.

#1 //Deleting all hidden files in present dir
rm -f .*

#2 //Deleting all hidden dir's in the present dir
rm -r .* OR rmdir .*

Note the command #2 will delete only the hidden dir's
created by the user not the default hidden dir's(. & ..)

Is This Answer Correct ?    0 Yes 1 No

Will rm -r* removes hidden files?..

Answer / sunitha k

rm -r* delete all files in the current directory and all
its sub-directories.it works really.

Is This Answer Correct ?    0 Yes 1 No

Will rm -r* removes hidden files?..

Answer / praful naik

Ans is rm -a

Is This Answer Correct ?    3 Yes 9 No

Post New Answer

More Unix Commands Interview Questions

Write a command to find all of the files which have been accessed within the last 30 days.

14 Answers   Cisco,


How do you create a file in UNIX

36 Answers   Accenture, EMG, Nokia, QA, TD,


what is the difference between Touch & cat command

21 Answers   QA,


What is the difference between cat command and more command?

0 Answers  


What is FIND, GREP and SED ? Could you please give me the difference between all the three? Where we use this commnands?

6 Answers   Deloitte, Polaris,






What does 'mkdir' command do in UNIX?

0 Answers   Syntel, Visa,


What is awk good for?

0 Answers  


What are reported commands?

0 Answers  


how will u execute a file in unix

8 Answers   QA,


What are filter commands in unix?

0 Answers  


How does pipe () work?

0 Answers  


why metadb requires a seperate slice to create Solaris volume manager

0 Answers   Wipro,


Categories