1 | #!/bin/bash |
2 | # |
3 | # NOTE: The test harness isn't good for this test; it strips lines that start |
4 | # with # |
5 | |
6 | ### comment |
7 | echo foo #comment |
8 | # stdout: foo |
9 | |
10 | ### not a comment without leading space x |
11 | echo foo#not_comment |
12 | # stdout: foo#not_comment |