Files
Chia-Che Tsai b5586bbfc6 release v0.3
- Bugfixes in PAL and SHIM
- Improvement of migration scheme in SHIM, which largely speed up
  forking
- Upgrade glibc to 2.19
- FreeBSD port
- Support OpenJDK, python and R
2015-11-30 08:38:50 -05:00

15 lines
230 B
Bash
Executable File

#!/bin/bash
times=$1
[ $times -gt 0 2> /dev/null ] || times=300
for (( c=1; c<=$times; c++ ))
do
echo "hello $c"
cp somefile testdir/somefile
rm -rf testdir/somefile
ls testdir/
cat somefile > testdir/x
date
done > OUTPUT