Glam Prestige Journal

Bright entertainment trends with youth appeal.

How I can access a server with domain name like 'ssh domainname\username@hostname'

Above one is not working? Please suggest correct syntax

0

1 Answer

Either double the backslash or quote it:

ssh foo\\
ssh "foo\bar"@example.com
ssh 'foo\bar'@example.com
ssh "foo\"
ssh 'foo\'
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy