blob: a3ffac4d09395fc6cf5bcb8be8a4a0aae1ee115a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env 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
|