16 Jun
2009
16 Jun
'09
8:09 p.m.
On Tue, Jun 16, 2009 at 13:03, Pierre Schmitz<pierre@archlinux.de> wrote:
Its quite untested so feel free to try it. Imho its quite feature complete, but comments and bug reports are welcome.
eval "${EDITOR} ${CONFIGFILE}" You don't need the eval here. Just ${EDITOR:-vi} "$CONFIGFILE" would work. I'd use case rather than a series of "if" statements to test your parameters (or preferably use getopt)