Both apostrophes (') and double-quotes (") will work fine on OS X,
specifically the ASCII versions (' = 0x27, " = 0x22).The problem is that the OP was using what are commonly referred to as "smart quotes" (a hilariously ironic name), or sometimes "curly quotes". These are Unicode characters, not part of the original ASCII set. They come in both single-quote and double-quote forms, and visually look very similar to classic ASCII, but sometimes are "rounded" or "curved" (as is preferred in typography). They are sometimes hard to see in Email as well, depending on what kind of Email client you use (due to character set conversions -- not everyone uses UTF-8). OS X is notorious for this sort of thing, often further compounded by blogs and websites that automatically use "smart quotes". Another common place they're seen is in Google Docs, which uses "smart quotes" by default, causing fantastically annoying problems when used for technical documentation that contain shell commands. (You can toggle this annoyance in Google Docs via Tools -> Preferences -> Use smart quotes, on a per-document basis). For further enjoyment, Google "Ruby smart quotes" for examples of how these cause problems in a least one programming language. -- | Jeremy Chadwick [email protected] | | UNIX Systems Administrator http://jdc.koitsu.org/ | | Making life hard for others since 1977. PGP 4BD6C0CB | On Mon, Sep 05, 2016 at 09:16:28AM +0200, walter harms wrote: > > > Am 05.09.2016 05:22, schrieb Martijn Dekker: > > Op 31-08-16 om 11:59 schreef casey: > >> REM�d out that build option in /configs/osx_defconfig: > > [...] > >> #CONFIG_EXTRA_CFLAGS=�-arch x86_64 -mmacosx-version-min=10.5' > > > > Your problem here were the curly (non-ASCII) single quotes (��). Shells > > don't understand these. Use the straight ASCII ones ('') instead. > > > > - M. > > > > I guess " would be better readable here. Or is there a special problem wirh > OSx ? > > re, > wh > _______________________________________________ > busybox mailing list > [email protected] > http://lists.busybox.net/mailman/listinfo/busybox
_______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
