9 lines
103 B
Bash
Executable file
9 lines
103 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
LOCK="/tmp/ironbar_soundbar.lock"
|
|
if [ -f "$LOCK" ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|