10 lines
123 B
Bash
Executable File
10 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -n "$1" ]; then
|
|
dlen_arg="+dlen=$1"
|
|
else
|
|
dlen_arg=""
|
|
fi
|
|
|
|
./testbench/testbench $dlen_arg
|