随机数shell脚本问题

2025-03-17 19:18:11
推荐回答(2个)
回答1:

for iterator in {1..10}
do
echo -n -e "$((RANDOM %10)) "
done 放到一个单独脚本里,用.引入此脚本

回答2:

能说具体点么