On Wed, Apr 04, 2012 at 04:08:04PM -0700, Linda Walsh wrote: > function ll { ls -l "$@"}
Just for the record, a one-line function definition requires a ; before the closing curly brace. ll() { ls -l "$@";}
On Wed, Apr 04, 2012 at 04:08:04PM -0700, Linda Walsh wrote: > function ll { ls -l "$@"}
Just for the record, a one-line function definition requires a ; before the closing curly brace. ll() { ls -l "$@";}