Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I escape @ character in Mac [duplicate]

Tags:

macos

svn

I need to check in the image file, [email protected] in Mac. When I try to use the command,

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

it doesn't work.

I then tried using single quote around the file name as suggested in some other answers

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

That also doesn't seem to work.

Removing the backslash before the @ also doesn't seem to work.

$ svn commit -m "another new file" '[email protected]'

Any help is appreciated.

Thanks.

like image 416
Gopalakrishnan Subramanian Avatar asked Feb 07 '12 18:02

Gopalakrishnan Subramanian


People also ask

How do you Control alt Escape on a Mac?

So here's how to do Ctrl Alt Delete on a Mac: Press Command+Option+Esc and you'll bring up the Force Quit dialog box. This can be used at any time but, given that you can quit any app by making it active and pressing Command+Q, the only time you'll need it is when an app stops responding or starts beachballing.

Does Mac have an Escape key?

Esc key is responsible for most cancel/abort/close operations, which includes quitting active processes on Mac. It's part of the frequently used force-quit shortcut (Option + Command + Esc), so there's no chance you can keep ignoring the issue too long.

What is the shortcut for Duplicate on Mac?

In the Shortcuts app on your Mac, select a shortcut, then choose File > Duplicate (or Press Command-D).

What is Command Shift Escape on Mac?

Control-Shift-Escape pulls up the task manage on Windows and the equivalent on the Mac is the Force Quit menu. You access that with Command-Option-Escape.


1 Answers

According to this SO answer and to the SVN book you need to add another @ symbol to the end of the file:

svn commit -m "another new file" [email protected]@

Give it a try and let us know if that works :D

like image 83
Diego Avatar answered Nov 14 '22 21:11

Diego