-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to Chet Ramey on 2/22/2005 1:44 PM:
>>1) time is no longer allowed to be a reserved word. For example:
>
>
> Not true; the POSIX description of time explicitly allows it to be a reserved
> word. But:
OK, I agree that POSIX 2004, on the p
> 1) time is no longer allowed to be a reserved word. For example:
Not true; the POSIX description of time explicitly allows it to be a reserved
word. But:
> $ set -o posix
> $ alias !='echo hi;'
> $ alias time='echi hi;'
> $ ! true# ! is reserved word, not alias
> $ echo $?
> 1