mirror of
				https://github.com/paboyle/Grid.git
				synced 2025-11-03 21:44:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			111 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			111 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
DIRS="build-icpc-mic"
 | 
						|
 | 
						|
for D in $DIRS
 | 
						|
do
 | 
						|
  mkdir -p $D
 | 
						|
 cd $D
 | 
						|
  ../configure-commands
 | 
						|
  cd ..
 | 
						|
done
 |