8 lines
		
	
	
	
		
			124 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			124 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# Right now, the {varname} mechanism does not honor set -u for compatibility
 | 
						|
unset v
 | 
						|
set -u
 | 
						|
exec {v}>&-
 | 
						|
 | 
						|
echo after
 | 
						|
 | 
						|
exit 0
 |