We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
[[..]]
(
)
[[ -e ~/.bashrc && \( -x /bin/dash || -x /bin/ash \) ]]
[[ -e ~/.bashrc && ( -x /bin/dash || -x /bin/ash ) ]]
You don't have to -- and can't -- escape ( or ) inside a [[ .. ]] expression like you do in [ .. ]. Just remove the escaping.
[[ .. ]]
[ .. ]
None.