2013年1月2日水曜日

[Perl]規定のブラウザで URL を開く (Windows)

use strict;
use utf8;
use Win32::FileOp qw(ShellExecute);
my $url = "http://www.google.co.jp/";
ShellExecute($url);
Win32::FileOp モジュールがない場合は ppm でインストールする
ppm> install Win32-FileOp

0 件のコメント:

コメントを投稿