sean finney on 13 Oct 2009 13:57:22 -0700 |
and hi again :) On Tue, Oct 13, 2009 at 04:45:45PM -0400, Paul L. Snyder wrote: > % typeset -p foo just fyi, that's a bashism (or at least, it's not POSIX), so you can likely run into trouble if you ship it with a #!/bin/sh shebang. for example, it's not in dash, which is the standard /bin/sh for debian and ubuntu these days. > Doing a more normal '2>&1 >/dev/null' immediately after the typeset doesn't > work (I'm sure there's a good reason, but I'd have to figure it out), so we i think you want >/dev/null 2>&1 (the order is significant). sean Attachment:
signature.asc ___________________________________________________________________________ Philadelphia Linux Users Group -- http://www.phillylinux.org Announcements - http://lists.phillylinux.org/mailman/listinfo/plug-announce General Discussion -- http://lists.phillylinux.org/mailman/listinfo/plug
|
|