How to delete: hdc1._.tar.bz2?

Joined
Aug 28, 2008
Messages
63
Reaction score
0
Ok, i copied hdc1._.tar.bz2 to my AAO while i needed one file-i installed it an now i want to delete hdc1._.tar.bz2. But there are more than 1300 small files that are impossible to remove. I tried as sudo with rm, rmdir, mv, but nothing-i thing that i need each file separately to remove. I it possible just in one move to delete that directory?
 
Unfortunally it does not work. This is message that i became. I made my self directoriy papierkorb (trash).

[root@localhost papierkorb]# rm -r hdc1._
rm: descend into directory `hdc1._'?
[root@localhost papierkorb]# rm -r hdc1._
rm: descend into directory `hdc1._'?
 
From the manual linked above:

-f, --force
ignore nonexistent files, never prompt

so,

rm -rf hdc1._

might do it.
 
vickoxy said:
Unfortunally it does not work. This is message that i became. I made my self directoriy papierkorb (trash).

[root@localhost papierkorb]# rm -r hdc1._
rm: descend into directory `hdc1._'?
[root@localhost papierkorb]# rm -r hdc1._
rm: descend into directory `hdc1._'?

Did you type "y" (without quotes) when asked the question?

Cheers.
 
Back
Top