@echo off
@setlocal
IF "%1"== "" (
echo on
echo opener of app, designed by admin@dev.easywaru.com
echo f : FireFox
echo c : Chrome
echo i : Internet Explorer
echo o : Opera
echo dig : online dig
echo df : dot net fiddle
echo sf : sql fiddle
echo jf : js fiddle
echo fe : find dot net err
exit
)
IF "%1"=="this" (
IF EXIST "C:\Program Files (x86)\sakura\sakura.exe" (
start "" "C:\Program Files (x86)\sakura\sakura.exe" -- %0
exit
)
start notepad %0
)
SET FF="C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
SET CRM="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
SET IE="C:\Program Files\Internet Explorer\iexplore.exe"
SET OPR="C:\Program Files\Opera\launcher.exe"
IF "%1" == "f" (
start "" %FF%
)
IF "%1" == "c" (
start "" %CRM%
)
IF "%1" == "i" (
start "" %IE%
)
IF "%1" == "o" (
start "" %FF%
)
IF "%1" == "dig" (
start "" %FF% https://toolbox.googleapps.com/apps/dig/
)
IF "%1" == "df" (
start "" %FF% https://dotnetfiddle.net/
)
IF "%1" == "sf" (
start "" %FF% http://www.sqlfiddle.com/
)
IF "%1" == "jf" (
start "" %FF% https://jsfiddle.net/
)
IF "%1" == "fe" (
start "" %FF% http://finderr.net/clr/ja/
)