diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-02-05 12:24:55 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-02-05 12:24:55 -0500 |
commit | 15d0c7105cc69427ad027752a4ec3cb4c9790186 (patch) | |
tree | 4d98e2eae5542d9494a23bf8906cb745391c48fc /data/sample1 | |
download | htcondor_examples-15d0c7105cc69427ad027752a4ec3cb4c9790186.tar.gz |
Initial commit
Diffstat (limited to 'data/sample1')
-rw-r--r-- | data/sample1/mkdata.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/sample1/mkdata.sh b/data/sample1/mkdata.sh new file mode 100644 index 0000000..e8ac434 --- /dev/null +++ b/data/sample1/mkdata.sh @@ -0,0 +1,10 @@ +#!/bin/bash +for i in `seq 0 100` +do + export filename="d${i}.dat" + for o in `seq 0 1000` + do + echo $o >> $filename + done +done + |