mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
11 lines
111 B
Plaintext
11 lines
111 B
Plaintext
|
#!/bin/bash
|
||
|
DIRS="build-icpc-mic"
|
||
|
|
||
|
for D in $DIRS
|
||
|
do
|
||
|
mkdir -p $D
|
||
|
cd $D
|
||
|
../configure-commands
|
||
|
cd ..
|
||
|
done
|