Thanks ya'll,
I forgot to mention that my hosts needed to be in a list...also the reason I wanted to not require an external call is because the script calling my hosts doesn't belong to me thus I was attempting to make the code simple and not require additional Modules to be installed/called...
After some thought/research I have decided upon the following code as my solution...
#!/usr/bin/perl
sub get_hosts {
@hosts=("host1.domain.com","host1.domain.com","host1.domain.com","h
+ost1.domain.com");
@app = ();
while (@hosts) {
$rv = int(rand(@hosts));
push @app,$hosts[$rv];
$hosts[$rv] = $hosts[$#hosts];
pop @hosts;
}
$thosts = "$app[0],$app[1],$app[2],$app[3]";
return $thosts;
}
print &get_hosts();
Thanks again everyone for your suggestions...
Danny
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.