Imported from ../bash-2.05b.tar.gz.
This commit is contained in:
		
					parent
					
						
							
								f73dda092b
							
						
					
				
			
			
				commit
				
					
						7117c2d221
					
				
			
		
					 362 changed files with 34387 additions and 15063 deletions
				
			
		
							
								
								
									
										31
									
								
								tests/redir5.sub
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								tests/redir5.sub
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,31 @@ | |||
| # tests of ksh93-like dup-and-close redirection operators | ||||
| exec 9<$0 | ||||
| 
 | ||||
| f() | ||||
| { | ||||
| exec 5<$0 | ||||
| 
 | ||||
| exec 0<&5- | ||||
| 
 | ||||
| while read line; do | ||||
| 	echo "$line" | ||||
| done | ||||
| } | ||||
| 
 | ||||
| f | ||||
| 
 | ||||
| typeset -f f | ||||
| 
 | ||||
| # make sure it was closed | ||||
| read -u 5 foo | ||||
| echo after read | ||||
| 
 | ||||
| exec 5<&0 | ||||
| 
 | ||||
| exec <&- | ||||
| 
 | ||||
| read abcde | ||||
| 
 | ||||
| exec 0<&9- | ||||
| read line | ||||
| echo $line | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jari Aalto
				Jari Aalto