mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-08 06:41:58 +00:00
- 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
15 lines
230 B
Bash
Executable File
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
|