This is a script for any users of Linux who'd like a convenient way to begin editing a file as the superuser (i.e root) from Nautilus, the GNOME file manager.
#!/bin/sh IFS=" " for I in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS do gksu gnome-text-editor $I & done exit