1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00

lib/algorithms/approx/bigfloat.h

This commit is contained in:
Peter Boyle 2015-05-18 16:35:48 +01:00
parent cf9bbee256
commit f9a8377fe6
2 changed files with 9 additions and 0 deletions

3
scripts/cleanup Executable file
View File

@ -0,0 +1,3 @@
find . -name "*~" -print -exec rm -f {} \;
find . -name "errs" -print -exec rm -f {} \;
find . -name "log" -print -exec rm -f {} \;

6
scripts/substitute Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
export LANG=C
find . -name "*.cc" -print -exec sed -e "s/${1}/${2}/g" -i .bak {} \;
find . -name "*.h" -print -exec sed -e "s/${1}/${2}/g" -i .bak {} \;
find . -name "*.bak" -exec rm -f {} \;