You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
|
|
FF=`find . -name \*.F90 -print` |
|
echo $FF |
|
|
|
HF=`find . -name \*.h -print` |
|
echo $HF |
|
|
|
MF=`find . -name Makefile -print` |
|
echo $MF |
|
|
|
sed -i -e 's/[ \t]*$//' $FF $HF $MF
|
|
|