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