blob: 1864b3fc8b2d7e62ed1f560113e42cc41a2fdfac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
2 (cd foo &&
3 bar
4 ) &&
5
6 (cd foo ?!LINT: missing '&&'?!
7 bar
8 ) &&
9
10 (
11 cd foo &&
12 bar) &&
13
14 (cd foo &&
15 bar) &&
16
17 (cd foo ?!LINT: missing '&&'?!
18 bar)
|