Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libexec/gold-run
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

exe='decoder4u -n 10000'
exe=$1
csv=gold.csv
cache=pin-gold.txt
cache=gold.pin

if ! [ -f $csv ] || ! [ -f $cache ]
then
Expand All @@ -21,7 +21,7 @@ do
period=${x%%,*}
stub=${period}_${run}
data=$(grep ${run} $cache | grep 1$)
$exe -o $stub.hipo $data >& $stub.log &
$@ -o $stub.hipo $data >& $stub.log &
done

wait