Search Results

1
vote

bash, dash and string comparison

Use = instead of ==. Comparisons are handled by test(1). /usr/bin/[ is typically a link to /usr/bin/test . The only difference is that if youb use [ in a shell script, the ] is required aswell. …