LoginSignup
0
0

More than 5 years have passed since last update.

Windows CMD フォルダ内のバッチを数値順に実行

Posted at

説明

いくつものバッチを順番に実行していくのが手間な時に、、、
バッチ以外も実行します。その際は、絞り込みを行えばOKです。

for /F %%a in ( 'dir /B /on') do (
    call %%a
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0