Skip to content

Instantly share code, notes, and snippets.

@lenia23
Last active April 15, 2019 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenia23/e05027e92aa68576464f8984ad933200 to your computer and use it in GitHub Desktop.
Save lenia23/e05027e92aa68576464f8984ad933200 to your computer and use it in GitHub Desktop.
isf file to csv
@echo off
cd /d %~dp0
for /d %%d in (./ABC*) do (
cd /d %~dp0/%%d
copy /d %~dp0\cnvrtwfm\cnvrtwfm.exe .\
for %%i in (*.isf) do (
.\cnvrtwfm.exe -l -8- %%i
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment