mirror of
https://github.com/sstent/Scripts.git
synced 2026-01-26 15:12:27 +00:00
5 lines
177 B
Batchfile
5 lines
177 B
Batchfile
@echo off
|
|
for /f "DELIMS=/" %%s in (pinch_local.txt) do (
|
|
c:\pinch.exe %%s
|
|
IF ERRORLEVEL 1 (echo failed %%s >>pinch_local.log) else (echo connected %%s >>pinch_local.log )
|
|
) |