[BusyBox] unsubsribe

Arul Ponnusamy arulp at ariodata.com
Mon Jan 3 18:32:55 UTC 2005



-----Original Message-----
From: busybox-bounces at mail.busybox.net
[mailto:busybox-bounces at mail.busybox.net]On Behalf Of Mike Frysinger
Sent: Sunday, January 02, 2005 7:12 PM
To: busybox at mail.busybox.net
Subject: Re: [BusyBox] Forbidden characters in shell function names?


On Sunday 02 January 2005 08:34 pm, Mike Castle wrote:
> Except that it actually works:

default bash behavior is to not be POSIX anal

$ a.b=f
bash: a.b=f: command not found
$ a.b() { echo blah; }
$ a.b
blah

$ export POSIXLY_CORRECT=yes
$ a.b=f
bash: a.b=f: command not found
$ a.b() { echo blah ; }
bash: `a.b': not a valid identifier
-mike
_______________________________________________
busybox mailing list
busybox at mail.busybox.net
http://busybox.net/mailman/listinfo/busybox



More information about the busybox mailing list