> I'm quite fresh in using Linux and I can't understand why parameters > given to smbclient are not the one typed in config file i.e specific > signs have been added like \ :
The reason you're seeing the extra backslashes is because the command line needs a way to differentiate a literal space from a separate command. Take for example, the command Ping computer name How's the computer supposed to interpret this command? Is it supposed to ping "computer" with the optional command input "name"? The proper way to write this command would be: Ping computer\ name The extra backslash tells the program that "computer name" is what you're trying to ping. The "\ " means that there is a literal space in this block of text, rather than causing the space to say that "computer" and "name" are two separate blocks of text. I'm not starting a new block of text. But wait, what if you actually need to specify a backslash character? Well, you need to double it, then. "\\" means "literal backslash" the same way that "\ " means "literal space" This is why you're seeing double backslashes in command. It is normal. Justin Best 503.906.7611 Voice 561.828.0496 Fax ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ BackupPC-users mailing list BackupPC-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/backuppc-users http://backuppc.sourceforge.net/