Skip to content

Instantly share code, notes, and snippets.

@nappa7878
Created February 3, 2013 06:20
Show Gist options
  • Save nappa7878/4700734 to your computer and use it in GitHub Desktop.
Save nappa7878/4700734 to your computer and use it in GitHub Desktop.
1つのURLを複数ブラウザで開くためのバッチファイル
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