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
- maVen
- plugin
- vscode
- resource
- bash
- Windows 10
- GIT
- netsh
- import
- find
- port
- IntelliJ
- grep
- 네트워크
- 단축키
- ssh
- Mac
- context
- Quartz
- Windows
- 줄바꿈 문자
- JavaScript
- lsof
- xargs
- Source
- web.xml
- profile
- tomcat
- VirtualBox
- Eclipse
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