When trying to open a file with sudo gedit /path/to/file with a file name starting with a ! in front eg !config.ini i can not open the file. However if i do sudo nautilus then open the file with gedit it opens.If the file is renamed config.ini sudo gedit again works.Could someone explain this to me please.
- 2,116
4 Answers
You are entering the sudo gedit /path/to/file command into a shell (by default bash), but modern shells use the '!' character for special purposes. Special characters can be interpreted without special meaning by preceding them with the '\' character.
Try:
gksudo gedit /path/to/\!file
instead of
gksudo gedit /path/to/!file
In modern shells the commands you enter are remembered and you can reenter them by using the '!' character. !! for example reenters the last command. As Uri points out, this is called an event designator. The bash interpreter also let's you use Ctrl+R to easily find commands you want to reenter, but the '!' mechanism is still there for us old-timers who have the habit of using '!' instead. Other uses of "!" include the $! parameter, and its use in arithmetic and logical expressions.
A bash reference may be helpful if you run into such mysteries because shells can be very complicated. The gnu bash manual is here.
Uri helpfully mentioned that you should use gksu or gksudo rather than sudo. There is an explanation here: What is the difference between "gksudo nautilus" and "sudo nautilus"?.
- 137
- 13,436
The easy fix is to disable history expansion permanently by adding the following line to your ~/.bashrc
set +H
If you've never intentionally used history expansion, you won't miss out on anything by disabling it.
- 47,279
It's an Event designator.
see man bash:
- ! Expands to the process ID of the most recently executed back‐ ground (asynchronous) command.
- 15,318
A complete solution would be to put the directory name within single quotation marks (').
Example
sudo gedit /media/alexandro/'Disco Local'/'Dropbox (Equipe Alexandro)'/Pessoal/'!A Organizar'/Documentos/'!asd.txt'
- 13,500