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