Hello, everyone. :-)
Have you ever found yourself dealing with editing several files, and sighing at having to type out different "gedit" commands in the terminal?
If I correctly described an experience that you've had, the following tutorial is a must. [COLOR="Red"]My tutorial allows you to add "Open with gedit" to the Right-click menu, making it easy to gedit anything![/COLOR] :-)
First, we need to run this command in the terminal, making the file that will hold our script:
gedit ~/.gnome2/nautilus-scripts/Open\ with\ gedit
Now, a blank document in the text editor should open. Copy and paste these contents:
#!/bin/bash
#
# Nautilus script -> open gedit
#
filesall=""
while [ $# -gt 0 ]
do
files=`echo "$1″ | sed 's/ /\?/g'`
filesall="$files $filesall"
shift
done
gedit $filesall&
Now click save, and close the text editor.
Finally, we need to make the previous script executable. So let's run this command:
chmod u+x ~/.gnome2/nautilus-scripts/Open\ with\ gedit
And that's it! Open up the file browser, and right-click on any file to test it out!
I hope I've helped to make someone's life a lot easier. Enjoy, everyone.