Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jeyyu

  1. jeyyu

    converstion from array to

    thanks. however, i am still not able to bunch each word in it's own element in the array. this is what i have: open (file, "input.txt") or die ("can't open file"); #write it into a array @myfile=<file>; foreach $i (@myfile){ @tmp=split /\s+/, $i; print @tmp; } print ("\n\n"); print "the...
  2. jeyyu

    converstion from array to

    not much. I can't figure out how to take each element and put it in it's separate variable. open (file, "input.txt") or die ("can't open file"); #write it into a array @myfile=<file>; foreach $i (@myfile) { print "$i\n" ; } print "\n\n"; print "$myfile[0]"; As expected,the loop prints out...
  3. jeyyu

    converstion from array to

    Hi, I am trying to figure out how to write a script to convert the following below from ! probe blah http request method head url /blah/blah.html expect status 200 interval 20 retries 2 failed 60 port 80 to add lb monitor <blah> HTTP -url </blah/blah.html> -interval <20> -port...

Part and Inventory Search

Back
Top