You are probably better off using
CGI.pm instead
of rolling your own parsing of arguments.
As for checking the password, are you sure you want to
reject passwords containing a non-alphanum? Usually you
try to enforce hard to guess passwords, your check is
promoting easy to guess passwords. Anyway, to enforce a
minimum length of 5, replace the + in your regex
with {5,}.
As for the line with grep and ypcat, what makes you think
that that is valid Perl? And why do you "have to" use ypcat?
Anyway, I suggest that you lookup the syntax of grep -
then it should become much clearer.
BTW, was this a homework problem?
Abigail
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.