How to use linux command line ftp with a @ sign in my username? [closed] How to use linux command line ftp with a @ sign in my username? [closed] linux linux

How to use linux command line ftp with a @ sign in my username? [closed]


Try this: use "%40" in place of the "@"


As an alternative, if you don't want to create config files, do the unattended upload with curl instead of ftp:

curl -u user:password -T file ftp://server/dir/file


Try to define the account in a ~/.netrc file like this:

machine host login info@domain.com password mypassword

Check man netrc for details.