Avoiding the @ character on Mac

I need to check the image file, image@2x.png on Mac. When I try to use a command,

$ svn commit -m "another new file" image \ @ 2x.png

he does not work.

Then I tried to use a single quote around the file name as suggested in some other answers

$ svn commit -m "another new file" 'image \ @ 2x.png'

This does not work either.

Removing the backslash before @ also does not work.

$ svn commit -m "another new file" ' image@2x.png '

Any help is appreciated.

Thank.

+5
source share
1 answer

SO SVN @ :

svn commit -m "another new file" image@2x.png@

, : D

+9

All Articles