this is not (yet) in the frm2 repo Change-Id: Ia5b2996803c3dbb15b85ab1bc3a24717ac6297fb
9 lines
123 B
Tcsh
Executable File
9 lines
123 B
Tcsh
Executable File
#!/bin/tcsh
|
|
foreach fil (*.inp)
|
|
set u=${fil:au:r}
|
|
if (-e $u.340) then
|
|
# rm $fil
|
|
echo "$fil $u.340"
|
|
endif
|
|
end
|