Hi,
lftp is a greatest ftp/http client, I'm a long-time very satisfied
user, really. Thanks a lot.
You have lftpget script bundled, and here is a small trivial script
which I find very useful. It's called "lftpls" and it lists files on
an URL (like ncftpls). It calls "lftp -c" like lftpget... Consider
adding it to lftp package.
Have a nice day
(I'm off the list, please Cc: me on list replies)
--
Martin Mačok http://underground.cz/
[EMAIL PROTECTED] http://Xtrmntr.org/ORBman/
#!/bin/sh
# lftpls - outputs a list of files on an URL
# Copyright (c) 2002 Martin Macok <[EMAIL PROTECTED]>
# This file is covered by GNU GPL. See file COPYING for details.
if [ $# != 1 ] ; then
echo "Usage: $0 URL"
exit 1
fi
exec lftp -c "open \"$1\" && ls -C1"