You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
432 B
24 lines
432 B
![]()
7 years ago
|
# LINT: first subshell statement cuddled with opening "("; for implementation
|
||
|
# LINT: simplicity, "(..." is split into two lines, "(" and "..."
|
||
|
(cd foo &&
|
||
|
bar
|
||
|
) &&
|
||
|
|
||
|
# LINT: same with missing "&&"
|
||
|
(cd foo
|
||
|
bar
|
||
|
) &&
|
||
|
|
||
|
# LINT: closing ")" cuddled with final subshell statement
|
||
|
(
|
||
|
cd foo &&
|
||
|
bar) &&
|
||
|
|
||
|
# LINT: "(" and ")" cuddled with first and final subshell statements
|
||
|
(cd foo &&
|
||
|
bar) &&
|
||
|
|
||
|
# LINT: same with missing "&&"
|
||
|
(cd foo
|
||
|
bar)
|