You mentioned a local html file on your hard drive, right? Try this:

#!/usr/bin/perl -w use strict; my $filename = "/xyzzy.html"; #whatever system("start file://$filename")

A few things to remember:

  1. Start was added sometime between Windows 95 and Windows 98. I believe it was added in 95 OSR/2, but may not be remembering that correctly. (That detail may or may not help you troubleshoot an old system someday.)
  2. When loading files on the local drive, use the file:// prefix, not the http:// prefix.
  3. Perl prefers to see forward slashes.

Update: thanks, jc.

P.S for **NODE DELETED**: Please get a grip or go away. Some of us aren't as 7337 as you and simply cannot cope with your profundity. Update 2: Looks like that node got reaped, so strike the friendly criticism for the Anonymonk.


In reply to Re: Opening html *file* with win32 shell execute by cymon
in thread Opening html *file* with win32 shell execute by Eradicatore

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.