Files
dotfiles/bin/e
Nick Nisi 99343b27a7 new commands, updated gitconfig
+ e opens $EDITOR (thanks @holman)
+ h is same as 'c' but in home directory (thanks @holman)
+ updated gitconfig
2013-02-05 20:47:16 -06:00

8 lines
78 B
Bash
Executable File

#!/bin/sh
if [ "$1" == "" ]; then
exec $EDITOR .
else
exec $EDITOR $1
fi