Jeśli chcesz wziąć udział w dyskusjach na forum - zaloguj się. Jeżeli nie masz loginu - poproś o członkostwo.
Vanilla 1.1.4 jest produktem Lussumo. Więcej informacji: Dokumentacja, Forum.
Utwórz plik wsadowy mkdir1.bat, który będzie tworzył w bieżącym katalogu trzy katalogi o
nazwach podanych jako parametry wiersza poleceń.
Wskazówka Użyj poleceń takich jak md %1
c:\dupa>dir
Volume in drive C has no label.
Volume Serial Number is B442-80A2
Directory of c:\dupa
30.05.2019 13:42 <DIR> .
30.05.2019 13:42 <DIR> ..
30.05.2019 13:42 28 mkdir1.bat
1 File(s) 28 bytes
2 Dir(s) 157 911 666 688 bytes free
c:\dupa>mkdir1.bat bolec stolec kolec
c:\dupa>mkdir bolec
c:\dupa>mkdir stolec
c:\dupa>mkdir kolec
c:\dupa>dir
Volume in drive C has no label.
Volume Serial Number is B442-80A2
Directory of c:\dupa
30.05.2019 13:42 <DIR> .
30.05.2019 13:42 <DIR> ..
30.05.2019 13:42 <DIR> bolec
30.05.2019 13:42 <DIR> kolec
30.05.2019 13:42 28 mkdir1.bat
30.05.2019 13:42 <DIR> stolec
1 File(s) 28 bytes
5 Dir(s) 157 911 339 008 bytes free
c:\dupa>
copy con mkdir1.bat
md %1
md %2
md %3
D:\>copy con mkdir.bat
md %1
md %2
md %3
^Z
1 file(s) copied.
D:\>mkdir.bat
D:\>md
The syntax of the command is incorrect.
D:\>md
The syntax of the command is incorrect.
D:\>md
The syntax of the command is incorrect.
md %1%
md %2%
md %3%
@echo off
:rep
if "%~1"=="" goto end
mkdir %1
shift
goto rep
:end
mkdir1.bat ATARI JEST BOSKIE
dir
Od 1 do 19 z 19