Will rm -r* removes hidden files?
Answers were Sorted based on User's Feedback
Answer / jennie
find the hidden files by doing ls -lat
and then use rm <filename>
| Is This Answer Correct ? | 1 Yes | 0 No |
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 |
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 |
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 |
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 |
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 |
Which command is used to create a directory?
Why is awk called awk?
what is the difference between commmands cmp and diff?
What is the command to find maximum memory taking process on the server?
how to unzip the contents of the gzip file
what do you understand by 'building block primitive'?
How to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.
3 Answers Amazon, MBA, Syntel, TCS, Unisys,
Will rm -r* removes hidden files?
How do you find path of a directory? Give its syntax.
What does the md command do?
in UNIX,How do you check for processes started by particular user suppose the user name is 'suresh'?
what is the difference between pipe(|) and tee command..