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 wOOdy-Soft 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 PerlGerl

  1. PerlGerl

    xml to html transform using perl

    Can anyone point me in the right direction?
  2. PerlGerl

    xml to html transform using perl

    I want to use perl to transform xml to html via an xsl. I found this little script which promises to do so. I downloaded both modules but they complain for the latest libxml2 version from http://xmlsoft.org I went there, i obtained the files and now im getting into something too big. I need to...
  3. PerlGerl

    Glob question

    yes, that is it exactly. I didn't have the syntax right, i was trying a != grep and it was not having it. Thanks for your help ;)
  4. PerlGerl

    How to automate a couple scripts

    So they're accessing the @ARGV of the main script that's "do-ing" them? That's impressive. How are they accomplishing this, just in the usual way? scripts2-3 work on their own to parse files and output a new file. They each take the desired files as arguments but you can enter as many...
  5. PerlGerl

    How to automate a couple scripts

    I got do to work, if anyone is interested. ### vars $file1 = "script1.pl"; $file2 = "script2.pl"; $file3 = "script3.pl"; ### run script1.pl complain if can't run unless ($return = do $file1) { warn "couldn't parse $file1: $@" if $@; warn "couldn't do $file1: $!"...
  6. PerlGerl

    Glob question

    How to glob but not include all files, example: I want to list all files in a directory that end in a certain extention except those that have the string "all" in the filename. so it would capture foo.c bar.c but not foo-all.c bar-all.c
  7. PerlGerl

    How to automate a couple scripts

    do 'script3.pl @ARGV'; does not work :( also I noticed that I that I had double quotes, I changed those to single quotes, no dice still.
  8. PerlGerl

    How to automate a couple scripts

    do EXPR seems like the best option, i can't seem to make it work. Here is my code, it doesnt do anything but you can see what I am trying to do. I tried making modules and maybe im not doing it right, but all i can do is inherit variables and functions, but not excute the code as a script. do...
  9. PerlGerl

    How to automate a couple scripts

    Perhaps I should have been more clear, It is not as simple as running the three scripts in succession. The second script takes parameters from the command line(a file name to parse). I am thinking first glob the files needed from the directory then do a loop to iterate thru each file and pass as...
  10. PerlGerl

    How to automate a couple scripts

    I am looking to run a few scripts within a script, if possible. I wrote a few scripts that parse text from different files, what I want to do is link them so I can run one script that will run all other scripts. like script1.pl script2.pl script3.pl and script4.pl will run all three, automating...
  11. PerlGerl

    Bios checksum error

    Most likely the cmos battery has died. You can try to replace it yourself but I would suggest taking it to be replaced unless you are keen to removing 20+ screws and removing the keyboard.
  12. PerlGerl

    No power off

    It may be the powersupply, but it sounds more like it may be the board. You will have open it up and test some parts. If your not up to that then buy a new one. If you are rdy to try to repair it, i can walk you thru it.
  13. PerlGerl

    IIS

    Restart the service, check the event viewer to make sure the service is being started when windows starts and also check for errors. If that doesnt work make sure you have ALL service packs installed and securtiy patches. Run IIS lockdown tool while your at it, its always a good idea. If NOTHING...
  14. PerlGerl

    motherboard i/o help

    If you are talking about the piece of aluminum that covers the ps2, serial, usb etc, it usually comes with the case, My case came with a couple they didn't fit either. My motherboard came with one however, the only way to get one that will fit is through the motherboard manufacturer. You could...
  15. PerlGerl

    Hash Insertion order without IxHash

    Thanks so much for all your help. rharsh - tried your method and it worked wonderfully. :)

Part and Inventory Search

Back
Top