6 lines
177 B
Bash
Executable File
6 lines
177 B
Bash
Executable File
#!/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 "$@"
|