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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. joedel142

    scripts to start apache 2 and tomcat

    Apache already has a start/stop shell $APACHE_HOME/bin/apachectl. You can pass start/stop on the command line which means you can have a simple shell to do what you want. I'm not sure about tomcat...
  2. joedel142

    How to use perl to send mail via SMTP server?

    take a look at Net::SMTP
  3. joedel142

    How to define a directory variable with '&' and spaces in the name?

    use the quote operator q{}: $HOME_DIR=q{S:\Parent Folder\Parent 1 & Parent 2\Child}; print $HOME_DIR . "\n";
  4. joedel142

    Please, help I would like to start

    Get the active state distribution, it's the best for windows http://www.activestate.com/Products/Download/Register.plex?id=ActivePerl
  5. joedel142

    Newbie problems with filehandles

    Hi, if all you want to do is read the file into an array, you don't need a loop. Just do this: open(FILEHANDLE, &quot;somefile.txt&quot;); @array=<FILEHANDLE>; close(FILEHANDLE); If you want to process it in the loop and also save it to array: open(FILEHANDLE, &quot;somefile.txt&quot;)...

Part and Inventory Search

Back
Top