1@echo off
2
3if "%*" EQU "" (
4	echo Usage: svn_add.bat FILE1 ...
5	goto end
6)
7
8svn add %*
9
10svn_pset.bat %*
11
12:end
13