Created
June 6, 2010 03:25
-
-
Save ivey/427262 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
edit () { | |
new_args=() | |
LIMIT=$# | |
for ((i = 1; i <= $LIMIT; i++ )) do | |
eval file="\$$i" | |
if [[ -e $file && ! -O $file ]] | |
then | |
new_args[i]="/sudo::$file" | |
else | |
new_args[i]=$file | |
fi | |
done | |
command $EMACS_CLIENT -n $new_args | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment