Math Processor Unit Library

libmpu – library of arithmetic functions for integer, real, and complex numbers of increased digit capacity

16 Commits   0 Branches   2 Tags
868b2b66 (kx 2024-12-20 16:11:07 +0300 1) #!/bin/sh
868b2b66 (kx 2024-12-20 16:11:07 +0300 2) 
868b2b66 (kx 2024-12-20 16:11:07 +0300 3) for file in `find . -name "*_tmp_*.dfn"` ; do
868b2b66 (kx 2024-12-20 16:11:07 +0300 4)   newname=`echo "${file}" | sed 's,\(.*\)_tmp_\(.*\),\1_log_\2,'`
868b2b66 (kx 2024-12-20 16:11:07 +0300 5)   mv ${file} ${newname}
868b2b66 (kx 2024-12-20 16:11:07 +0300 6) done