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 the difference between grep and grep?
How to remove a crontab file?
What is awk good for?
What does 'mkdir' command do in UNIX?
Where LOG fiels resides in AIX and pls tel me how to remove the log file
How do I open a port?
What Command is used to make a directory?
What is time_t?
What difference between cmp and diff commands?
in a growing log file how will you see the 1st 99 lines?
what is the difference between SED and GREP ? Which one is more better and why?
What is the use of tee command?