Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion csv.bat
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ SET FILENAME2=%~n11%~x1
SET FILENAME3=%~n112%~x1

:: 라인 제거 스크립트 실행
python csv1.py "%FILENAME1%.csv"
:: 두 번째 인자가 있으면 전달, 없으면 그냥 전달하지 않음 (default=1-134)
:: 1-128만 삭제할 경우 csv1.py 파일명 1-128
IF "%~2"=="" (
python csv1.py "%FILENAME1%.csv"
) ELSE (
python csv1.py "%FILENAME1%.csv" "%~2"
)

:: 컬럼 제거 실행
python csv2.py "%FILENAME2%.csv"
Expand Down