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

Give the command to display space usage on the UNIX file system.

16 Answers  


what is the command to list all files in a directory, including the hidden files in UNIX ?

9 Answers   CTS,


What is merge command in unix?

0 Answers  


what does a process mean?

5 Answers   Infosys,


What does pipe () return?

0 Answers  






How to get the operating system's information in unix?

6 Answers   IBM, TCS,


Where can I get the free download of Unix by Yeswant Kanetkar?

5 Answers  


How can you see the command line history?

0 Answers  


What is the procedure of "at" and crontab" commands?

4 Answers  


how many types of file in unix?

34 Answers   MNC, TCS,


use of ls command

9 Answers  


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

0 Answers  


Categories