8 lines
155 B
Text
8 lines
155 B
Text
|
#!/bin/sh -e
|
||
|
export UB_RESULTDIR=`pwd`/ub-results
|
||
|
export UB_TMPDIR=/var/tmp/unixbench
|
||
|
mkdir -p $UB_RESULTDIR
|
||
|
cd /usr/share/unixbench
|
||
|
|
||
|
./Run $@ 2>/dev/null
|