I am assuming that apache implies
*n[iu]x... what I do is this:
rm `locate module_i_dont_like_anymore.pm`
That should delete all occurances of the file. Note that you probably want to first do:
ls `locate ...`
to make sure you're deleting only what you want to delete. Also, it might be a better idea to just use:
rm `locate module_I_dont_like.`
without the extention, that you'll get any compiled libs by the same name.
Note that, I'm not saying this is the correct way to do it, I'm just saying, this should get rid of (most of) the files in a (fairly) safe manner.
Also, first do a locate that is pretty broad, to see what you're dealing with. For example, locate Gimp suggests to me to do a rm -r `locate "/Gimp"`. (the non-Perl gimp stuff all has a lowercase g)
Aigh
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.