unix shell脚本写一个for循环,比较急!!!

2024-11-28 11:49:30
推荐回答(2个)
回答1:

#! /bin/bash
for i in `seq 1 100`; do
echo file$i
touch file$i
done

回答2:

谁出的题目啊