mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +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
|