I'm using bash, and yes, I have tried all of those quoting methods.
Main Topics
Browse All TopicsI run an automated FTP transfer from a Linux server (Mandrake 10) to a remote Windows 2000 server. Recently the host changed their server configuration, and I'm now required to add the domain to the username when logging in to their FTP server like this:
some.domain\username
I can log in interactively with no problem.
The problem is, if I try to automate this login, either via script or .netrc, the backslash character gets dropped. I've tried various quotings and using a double-backslash with no luck. I also tried doing a quadruple backslash, thinking maybe the character was getting stripped twice, but that didn't work either. I also tried creating a .netrc file with the username and password, but that only works when I run the ftp client interactively. Does anyone have a suggestion?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: harbor235Posted on 2005-01-11 at 05:03:32ID: 13013033
What shell script are you using? Did you try enclosing the command like this 'command', or "command", or lastly
`command`. They are all different. Looks like you are on the right track. Let me kinow what shell.
harbor235