Closed wyldckat closed 4 years ago
Single file:
grep "\-l.*" options | sed -e 's= *\\$==g' -e 's= *\(-\)=-=' | sort | uniq -d
All files:
foam
find src applications -name options | while read line
do
echo $line
grep "\-l.*" $line | sed -e 's= *\\$==g' -e 's= *\(-\)=-=' | sort | uniq -d
echo
done
For example, this happens with the library
foamToVTK
.