Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、変換するバッチ スクリプトを作成したいと思います。
/VAR/file.css
の中へ
/VAR_file.css`
VARIDです。i=0toのループを作成する必要がありますi<=36000
VAR
i=0
i<=36000
何か案は?
私はバッチスクリプトを操作したことがありません..
for i in `seq 0 36000` do for file in /$i/*.css do mv /$i/$file /$i_$file done done
式を使用してシーケンス from 0to36000を作成し{0..X}、ファイルを移動できます。
0
36000
{0..X}
for i in {0..36000} do mv "/$i/file.css" "/${i}_file.css" done