6 lines
177 B
Plaintext
6 lines
177 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ $0 = /sbin/pidof ] && echo -e "WARNING: pidof has been moved from /sbin to /usr/bin.\n Please, change/remove the hardcoded path." 1>&2
|
||
|
|
||
|
/usr/bin/pidof "$@"
|