I am using R & R Studio on Linux Mint 13, and I am trying to get a string that looks like this:
domain\username
but when I do this:
usr <- "domain\\username"
the resulting variable usr appears with two \ in it:
#[1] "domain\\username"
Everything I have found indicates that this is the proper way to do this, yet, this is what I get. Any suggestions? Is there a setting askew?