11 lines
117 B
Bash
Executable file
11 lines
117 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
args=( )
|
|
|
|
if [ ! -z "${HOSTNAME}" ]; then
|
|
args+=( "-n $HOSTNAME")
|
|
fi
|
|
|
|
python wsdd.py ${args}
|
|
|
|
|