9 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| export PATH=/bin:/usr/bin:$PATH
 | |
| 
 | |
| mkdir $out
 | |
| echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
 | |
| 
 | |
| ln -s $input2 $out/input-2
 | |
| 
 | |
| # Self-reference.
 | |
| ln -s $out $out/self
 |