/usr/bin/gftp is in gftp-common 2.0.19-4ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
prefix=/usr
exec_prefix=${prefix}
if [ "$DISPLAY " != " " ] && [ -f ${exec_prefix}/bin/gftp-gtk ]; then
exec ${exec_prefix}/bin/gftp-gtk ${1+"$@"}
elif [ -f ${exec_prefix}/bin/gftp-text ]; then
exec ${exec_prefix}/bin/gftp-text ${1+"$@"}
else
echo "Error: Can't find gFTP binaries installed in ${exec_prefix}/bin"
fi
|