6 lines
192 B
Bash
Executable File
6 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
if [ -e /var/run/proftpd.scoreboard ] ; then
|
|
exec /usr/bin/ftpwho -f /var/run/proftpd.scoreboard "$@"
|
|
fi
|