File: makefor

package info (click to toggle)
r-cran-deldir 0.1-12-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 588 kB
  • ctags: 103
  • sloc: fortran: 1,383; ansic: 107; makefile: 5; sh: 5
file content (7 lines) | stat: -rwxr-xr-x 119 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
#!/bin/sh

for file in `ls *.r` ; do
	stem=`basename $file .r`
	ratfor $file > $stem.f
	/bin/mv $stem.f ../../src
done