1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-03-05 15:30:30 +00:00
2012-03-29 10:28:43 +02:00

14 lines
244 B
Tcl

#
# NAME: test3
# DESCRIPTION: create thousands of files
#
proc test3 {} {
mkvol [expr 100 * 1024] ;# /usr/local/mirrors/image.hfs
puts "Creating files..."
for {set i 0} {$i < 25000} {incr i} {
hcreate [format "f%x" $i]
}
}