On 3/28/12 11:11 PM, Yichao Yu wrote:
>> Pretty much everything else in bash uses characters, which may be bytes
>> depending on the locale.
>>
>> Can someone who's more familiar with the bash completion package tell me
>> whether or not it uses COMP_POINT at all? That's about that only thing
>>
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 "$@";}