發表文章

目前顯示的是 1月, 2015的文章

Batch file short cut .

因為工作上需要,會寫一些batch file來加速軟體安裝流程,其中最好用的莫過於batch file。這篇就來稍微分享一下常用的指令與用法吧。 @ ECHO FOR IF PAUSE %VARIABLE% %DIGIT REM CLS @    隱藏其後的指令,不會顯示於Command Prompt中. 可用於簡化畫面;也或者不想讓人知道下了何種指令?(Hacking?) Syntax:               @[Command] Example:           @echo Off ECHO    顯示其後的訊息 Syntax:               echo [On|Off|Message|.] Example:           echo     顯示echo目前狀態(On or Off)         echo Off        隱藏Windows Command Prompt中的訊息         echo On            恢復顯示Windows Command Prompt中的訊息         echo Hello world!    在Command Prompt顯示Hello world!   ...