I need to mount an SMB share with a line like
mount_smbfs //username:password@server.com/folder/ mountpoint
But my password
contains backticks!
How would I quote this?
I've tried:
mount_smbfs //username:`123`123@server.com/folder/ mountpoint
And single quotes:
mount_smbfs '//username:`123`123@server.com/folder/' mountpoint
And a variable:
pw='`123`123'
mount_smbfs //username:$pw@server.com/folder/ mountpoint
All of which give me
mount_smbfs: URL parsing failed, please correct the URL and try again: Invalid argument