> Thanks for ur reply. > > But I need the result in the format as in ls -lR > response. (with modified time, size etc) > > Is this a problem with the lftp installed in my > machine?
Nothing's wrong with your lftp. lftp currently doesn't support the -R flag
on ls. So, you can't do what you want directly. An alternative could be:
create the file blah.awk containing the following:
{ printf("ls -l %s\n", $0); }
then, in lftp, you do:
find | awk -f blah.awk > temp-file
source temp-file
