10 lines
99 B
Text
10 lines
99 B
Text
|
#!/bin/bash
|
||
|
|
||
|
LOCK=/tmp/expand_toolbar.lock
|
||
|
|
||
|
if [ -f "$LOCK" ]; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|