Created
February 3, 2013 06:20
-
-
Save nappa7878/4700734 to your computer and use it in GitHub Desktop.
1つのURLを複数ブラウザで開くためのバッチファイル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set /P URL=URLを入力してください: | |
start "" "C:\Program Files\Internet Explorer\iexplore.exe " %URL% | |
start "" "C:\Program Files\Mozilla Firefox\firefox.exe " %URL% | |
start "" "C:\Program Files\Safari\Safari.exe " %URL% | |
start "" "C:\Program Files\Google\Chrome\Application\chrome.exe " %URL% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment