brace_exp.out 623 B

12345678910111213141516171819202122232425262728293031
  1. # ANCHOR: single_brace_expansion
  2. filename.ext1 filename.ext2
  3. # ANCHOR_END: single_brace_expansion
  4. # ANCHOR: multi_brace_expansion
  5. job_01.ext1 job_01.ext2 job_02.ext1 job_02.ext2
  6. # ANCHOR_END: multi_brace_expansion
  7. # ANCHOR: nested_brace_expansion
  8. job_01_out.txt job_01_err.txt job_02_out.txt job_02_err.txt
  9. # ANCHOR_END: nested_brace_expansion
  10. # ANCHOR: range_brace_expansion
  11. 1 2 3 4 5 6 7 8 9
  12. 10 9 8 7 6 5 4 3 2
  13. 1 2 3 4 5 6 7 8 9 10
  14. 10 9 8 7 6 5 4 3 2 1
  15. a b c
  16. d c b
  17. a b c d
  18. d c b a
  19. # ANCHOR_END: range_brace_expansion
  20. # ANCHOR: range_brace_expansion_as_array
  21. 1
  22. 2
  23. 3
  24. 4
  25. 5
  26. 6
  27. 7
  28. 8
  29. 9
  30. # ANCHOR_END: range_brace_expansion_as_array