fork(2) download
  1. file1_content() {
  2. cat <<EOF
  3. 1
  4. 2
  5. 3
  6. EOF
  7. }
  8.  
  9. file2_content() {
  10. cat <<EOF
  11. 2
  12. 3
  13. 4
  14. EOF
  15. }
  16.  
  17. comm -13 <(file1_content) <(file2_content)
Success #stdin #stdout 0.01s 5412KB
stdin
Standard input is empty
stdout
4