echo adalah perintah dimana kalimat yang ada dibelakangnya akan tampil
dan jika dijalankan, akan disertai dengan folder tempat command dijalankan
maka di batasi dengan @echo off
contoh dasarnya adalah
echo If you type echo before a sentence it displays it as a message!.
echo Wow, thats pretty cool!
dan akan berbeda jika ditambahkan sehingga menjadi :
@echo off
echo If you type echo before a sentence it displays it as a message!.
echo Wow, thats pretty cool!
PAUSE
dimana Pause adalah perintah untuk menghentikan sejenak, di programnya akan tampil
press anykey to continue...
ada juga begini
@echo off
:fish
echo This is only one message being repeated over and over; Press Ctrl+C to stop
goto fish
ini untuk start command
The START command starts something.
Not much to explain here.
For example:
open your CMD and type:
"start www.instructables.com"
This opens your default explorer and goes to the Instructables site.
OR
"start itunes"
OR
You can also open files or folders:
"start desktop\foldername
demikianlah very dasar untuk pemprograman dengan batch
No comments:
Post a Comment