9 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
mkdir $out
 | 
						|
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
 | 
						|
 | 
						|
ln -s $input2 $out/input-2
 | 
						|
 | 
						|
# Self-reference.
 | 
						|
ln -s $out $out/self
 | 
						|
 | 
						|
echo FOO
 |