Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Bash question

Name: Anonymous 2013-04-20 14:23

Bash question: Why does

true || echo test

short-circuit, but

true || true && echo test

not?

Name: Anonymous 2013-04-20 14:36

operator precedence. It thinks you entered (&& (|| true true) (echo test)) when you meant to enter (|| true (&& true (echo test)))

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List