hypre/tools/hypre_struct_collapse
falgout 909d2256f1 Creating new tools directory.
Moved several files to from struct_matrix_vector directory to here.
1999-03-26 17:42:11 +00:00

10 lines
146 B
Bash
Executable File

#!/bin/sh
for i in $*
do
FILE=$i
cat $FILE.* > $FILE.tmp
sed -e 's/^[0-9]*: (/(/g' $FILE.tmp | sort | uniq > $FILE
rm -fr $FILE.tmp
done