Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Windows 10
- port
- netsh
- web.xml
- lsof
- 줄바꿈 문자
- IntelliJ
- Mac
- find
- grep
- VirtualBox
- resource
- 네트워크
- Eclipse
- xargs
- plugin
- tomcat
- maVen
- bash
- Source
- Quartz
- profile
- 단축키
- ssh
- Windows
- import
- JavaScript
- context
- GIT
- vscode
Archives
- Today
- Total
develog
[cmd] 함수 선언, 실행 본문
@echo off
::함수 실행
call :myFunc 11 22
call :myFunc 33 44
goto :EOF
::함수 선언
:myFunc
setlocal
set _val1=%1
set _val2=%2
echo %_val1% %_val2%
endlocal
'OS & Shell > Windows' 카테고리의 다른 글
[cmd] backup.bat (0) | 2014.12.03 |
---|---|
[cmd] array loop (0) | 2014.12.03 |
[cmd] 폴더 copy (0) | 2014.12.03 |
[cmd] 주석 (0) | 2014.12.03 |
[cmd] 날짜, 시간으로 폴더 생성 (0) | 2014.12.03 |
Comments