[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Help needed with debconf



> >  if [ "$variant" == "Unicode" ]; then
> >
> > That is a bashism which will fail if /bin/sh is dash. Use
> > [ "foo" = "bar" ] instead.
>
> Thanks... are there any more pitfalls like this?

[ expr -a expr ] is a pretty common "mistake".
[ expr ] && [ expr ] should be used instead.
(The same with OR.)

*/ Christoffer Sawicki <qerub@home.se>



Reply to: