annotate src/gftp.in @ 109:aa19af5c647d
2003-02-20 Christian Rose <menthos@menthos.com>
* sv.po: Updated Swedish translation by
Mattias Dahlberg <voz@home.se>.
author |
menthos |
date |
Thu, 20 Feb 2003 21:02:04 +0000 |
parents |
8b1883341c6f |
children |
0fcc6468a0af |
rev |
line source |
1
|
1 #!/bin/sh
|
|
2
|
|
3 if [ "$DISPLAY " != " " ] && [ -f @prefix@/bin/gftp-gtk ]; then
|
|
4 exec @prefix@/bin/gftp-gtk ${1+"$@"}
|
|
5 elif [ -f @prefix@/bin/gftp-text ]; then
|
|
6 exec @prefix@/bin/gftp-text ${1+"$@"}
|
|
7 else
|
|
8 echo "Error: Can't find gFTP binaries installed in @prefix@/bin"
|
|
9 fi
|
|
10
|