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
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)
Aperujutsurm -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 11 Replies
- totally unnecessary; just paste one line in shell (1 replies)
- 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)
Reviewing-Type Guy