mirror of https://github.com/xianyi/OpenBLAS.git
10 lines
118 B
Bash
10 lines
118 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
for f in *.goto *.acml *.mkl *.atlas
|
||
|
|
do
|
||
|
|
if [ -f "$f" ]; then
|
||
|
|
mv $f `echo $f|tr '.' '_'`.exe
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
|