How to handle file name with special character while copying using scp. it is giving me the below error .
the file name i am trying to copy = u3'T'volavg.dat
Error says = scp: ./RBC_ML/run_dir/u3Tvolavg.dat: No such file or directory
So from the above error, one can see that it is searching for file name u3Tvolavg.dat, although I have given the filename to copy as u3'T'volavg.dat I have tried all the below possible syntax.
scp user@hostIp:Remote_dir/x <Local machine path>
x = u3`'T`'volavg.dat
x = "u3'T'volavg.dat"
x = 'u3''T''volavg.dat'
Can even scp handle ' chars?