cvignal / 42sh

[42 project] Last project of the Unix branch
3 stars 2 forks source link

No error message in builtin test #35

Open cvignal opened 5 years ago

cvignal commented 5 years ago

When missing unary/binary operators or too many arguments there isn't any error message.

cvignal commented 5 years ago

a='hello' b=''; unset c test -z ${a} && echo ok || echo wrong test 'abc' = 'abc' && echo ok || echo wrong