6 lines
82 B
Bash
6 lines
82 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -o nounset
|
||
|
|
|
||
|
|
find "$RUNDIR" -type f -name '*.pid' -delete
|