You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the ftp password contains a forward slash, all wordmove commands fail with "Name or service unknown". This is because lftp interprets the password as a path.
To fix this, the lftp call has to be rewritten. Current version:
lftp -c 'set ftp:list-options -a; open ftp://[user]:[pass]@[host]; ...'
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
When the ftp password contains a forward slash, all wordmove commands fail with "Name or service unknown". This is because lftp interprets the password as a path.
To fix this, the lftp call has to be rewritten. Current version:
lftp -c 'set ftp:list-options -a; open ftp://[user]:[pass]@[host]; ...'
Slash-save version:
lftp -c 'set ftp:list-options -a; open --user [user] --password [pass] ftp://[host]; ...'
Compare lftp manpage:
The text was updated successfully, but these errors were encountered: