mirror of
https://github.com/OpenMathLib/OpenBLAS
synced 2026-05-31 00:45:48 +08:00
10 lines
118 B
Bash
Executable File
10 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for f in *.goto *.acml *.mkl *.atlas
|
|
do
|
|
if [ -f "$f" ]; then
|
|
mv $f `echo $f|tr '.' '_'`.exe
|
|
fi
|
|
done
|
|
|