#!/bin/bash
for i in `seq 1 1000`
do
mkdir directory_${i}
done
seq 1000|xargs -i mkdir dir{}
mkdir {0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
mkdir {1..1000}
#!/bin/bash
for i in `seq 1 1000`
do
mkdir directory_${i}
done
seq 1000|xargs -i mkdir dir{}
mkdir {0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
mkdir {1..1000}
Tagged with shell.
By C1G – 2007/05/25
关注互联网、网页设计、Web开发、服务器运维优化、项目管理、网站运营、网站安全…
Proudly powered by WordPress and Carrington.
No Responses (yet)
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.