about summary refs log tree commit diff homepage
path: root/scripts/genTempFiles.sh
blob: fa6e435f112debd88899721f55ffdca6c74d7239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# ===-- genTempFiles.sh ---------------------------------------------------===##
# 
#                      The KLEE Symbolic Virtual Machine
# 
#  This file is distributed under the University of Illinois Open Source
#  License. See LICENSE.TXT for details.
# 
# ===----------------------------------------------------------------------===##

if [ -z "$1" ] ; then
	echo "No directory given"
	exit 1
fi

mkdir -p $1
for i in `seq 1 100`; do
	mkdir -p $1/dir_foo_$i
	touch $1/tmp_foo_$i
done