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 |
what is ls -ltd?
How to copy multiple files and directories into some other directory?
what is Online(STM) and offline diagnostics in HP-UX?
hi i have directories within the directory. Now i want to copy the directory along with all directories included in it to one location by using copy command? what is the command
What command is used to switching between users in unix?
How to setup Disk space as well as memory in solaris10?
what is tar command and what are the different types of tar commands?
distinguish between physical addresses and logical address?
boot process?
in UNIX ,What is the command to view contents of a large error log file?
What is the pipe command?
What is use of sed command?
12 Answers BitWise, Infosys, Reliance,