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: *

  • Users: bartl
  • Order by date
  1. bartl

    Nice easy one! - How do I create an infinite loop???

    1 while (1) { print 1; } 2 for(;;) { print 1; } 3 { print 1; redo; }
  2. bartl

    Gzip....

    Hi. I am using; `gzip -c file.html > file.tar.gz`; at the moment, to create a tar.gz file by a script. That's not a .tar.gz file. That's a .gz file. These can only contain one file. If you want to make a .tar.gz file, you can create a .tar file, which may containe multiple files, and gzip...
  3. bartl

    Help With Line Length

    The module Text::Wrap might help. You can do it in plain perl too, but I'm a bit too lazy right now to try and make it work reliably. If you insist, attempt something along the lines of s/(.{1,64})(\s|$)/$1\n/g;
  4. bartl

    Data Back-Ups.

    I run like a game site and I want the user data to back up each day. Most of the data is like this: Each players has a directory named after their email address and inside there's all the game data such as username, password, etc. Is there any good back-ups script that you could back up these...
  5. bartl

    Form Confusing...

    <form action=&quot;explore.cgi?&mode=visit&quot; method=&quot;POST&quot;> You're mixing two methods of passing parameters to a CGI script: GET and POST. Don't. Put the mode into a hidden variable. <form action=&quot;explore.cgi&quot; method=&quot;POST&quot;> <input type=hidden name=mode...
  6. bartl

    socket script

    I need to find a working socket script to connect to another machine and have full handling to the second one. Maybe Net::Telnet can do what you want.
  7. bartl

    Perl2EXE

    Sleuth wrote: So are there any Perl2Exe Success stories? Yes. Even using only the evaluation version(s). You are using a web server, aren't you? Otherwise, it won't ever work. Try MicroWeb, from the same web site. First, perl2exe your script. See that it compiles properly, by trying to...

Part and Inventory Search

Back
Top