14 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			Text
		
	
	
	
	
	
(
 | 
						|
	cd foo &&
 | 
						|
	(
 | 
						|
		echo a &&
 | 
						|
		echo b
 | 
						|
	) >file &&
 | 
						|
 | 
						|
	cd foo &&
 | 
						|
	(
 | 
						|
# LINT: nested multi-line subshell not presently checked for missing "&&"
 | 
						|
		echo a
 | 
						|
		echo b
 | 
						|
	) >file
 | 
						|
)
 |