初心者必読!最低限知っておくべきDOSコマンド 2

このエントリーをはてなブックマークに追加
660名無し~3.EXE
>>658
shift というコマンドがある。

@echo off
:loop
if '%1'=='' goto end
attrib %1 /d /s -h -s
attrib %1 /d /s +h +s
shift
goto loop
:end