builtin_piping.ion 143 B

123456
  1. matches Foo '([A-Z])[[:word:]]+' && echo true
  2. matches foo '([A-Z])[[:word:]]+' || echo false
  3. echo foo | cat
  4. read foo <<< $(echo bar)
  5. echo $foo