UNIX File removal without conformation

I need to remove permanently some 3 GB of temp folder which contains Log file, simulation files from my disk.
if i use "rm - rf <filename>" command it asks about conformation for accessing each folder and for removing every file and giving yes to every message in terminal window is very frustrating.

If somebody can suggest some command would be a great help.

just point the command to folder to remove and thats it.

Thanks in advance
Harvijay

1: There is an extra space between the dash and rf.

2: I believe you shouldn't been prompted with this command unless you are using a broken rm which force the "-i" option.

3: you should be able to override that with the "yes" command:

yes | rm -r directory
\rf -rf dir
unalias rm
rm -rf dir
/usr/bin/rm -rf dir