KillTheRipper - 1.0cleans up behind MacTheRipper |
|
||||||||||||||
|
|||||||||||||||
Feedback Summary:
| This Version: | |||||
| Overall Rating: | Features: | Support: | |||
| Ease of Use: | Quality / Stability: | Price: | |||
Key to Types of Feedback:
Reviews
Troubleshooting
Usage Tips
Developer Notes
Commentary
Featured Reviews
Terrific! 



- Version: 1.0, 7/26/2006 09:14PM PST
cinthiamac
Great Little App for those of us who only need such a thing occasionally. A great simple, easy to use little app.
totally unnecessary; just paste one line in shell - Version: 1.0, 7/21/2005 05:29PM PST
(15 of 27 users found this comment useful)
Aperujutsu
Really, it's a total waste to download this. To do exactly the same thing without all the unnecessary crap, copy paste this line at your shell prompt in Terminal. That is, open the application Applications -> Utilities -> Terminal, and paste the line, and type return.
rm -r ~/.dvdcss
You can even make an alias out of it.
For tcsh, paste this line, once, and you'll have the same function in a command called "rdc" from now on:
echo "alias rdc 'rm -r ~/.dvdcss'" >> ~/.tcshrc
You could use .cshrc instead of .tcshrc if you prefer.
For bash, use this line instead:
echo "alias rdc='rm -r ~/.dvdcss'" >> ~/.bashrc
Or, you can make a "shell command executable" (which you can double-click like a normal application) out of it:
In bash:
echo '#!/bin/sh' > rdc ; echo 'rm -r ~/.dvdcss' >> rdc ; chmod 755 rdc ; open .
Or in tcsh:
echo '#\!/bin/csh'>rdc ; echo 'rm -r ~/.dvdcss' >> rdc ; chmod 755 rdc ; open .
Either of those lines will make you a tiny file that you can double-click to delete the hidden directory .dvdcss in your home folder.
In any case, you can change the -r after rm into -ir to make the rm (remove) command ask before each item, if you want.
rm -r ~/.dvdcss
You can even make an alias out of it.
For tcsh, paste this line, once, and you'll have the same function in a command called "rdc" from now on:
echo "alias rdc 'rm -r ~/.dvdcss'" >> ~/.tcshrc
You could use .cshrc instead of .tcshrc if you prefer.
For bash, use this line instead:
echo "alias rdc='rm -r ~/.dvdcss'" >> ~/.bashrc
Or, you can make a "shell command executable" (which you can double-click like a normal application) out of it:
In bash:
echo '#!/bin/sh' > rdc ; echo 'rm -r ~/.dvdcss' >> rdc ; chmod 755 rdc ; open .
Or in tcsh:
echo '#\!/bin/csh'>rdc ; echo 'rm -r ~/.dvdcss' >> rdc ; chmod 755 rdc ; open .
Either of those lines will make you a tiny file that you can double-click to delete the hidden directory .dvdcss in your home folder.
In any case, you can change the -r after rm into -ir to make the rm (remove) command ask before each item, if you want.
Most Recent Replies: View All 12 Replies
- totally unnecessary; just paste one line in shell
- this works great (1 replies)
Worked for me.... 



- Version: 1.0, 7/1/2005 04:40AM PST
(1 of 1 users found this comment useful)
Icedvovo
It fixed my woes. When you have problems copying a DVD, try the KTR. It worked for me. I don't understand the whys or wherefores, it just did. Good job.