7 lines
		
	
	
		
			161 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			161 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
MultiLine:
 | 
						|
	touch test.txt
 | 
						|
	echo "Première ligne" > test.txt
 | 
						|
	echo "Deuxième ligne" >> test.txt
 | 
						|
	echo "Troisième ligne" >> test.txt
 | 
						|
	cat test.txt
 | 
						|
	rm test.txt
 |