Skip to content
Snippets Groups Projects
Commit 8a875585 authored by Henry Weller's avatar Henry Weller
Browse files

foamCleanPath: Changed sed delimiter from '@' to '|' to allow Email addresses

Patch contributed by Bruno Santos
http://bugs.openfoam.org/view.php?id=2306
parent 1b51b774
No related merge requests found
...@@ -107,7 +107,7 @@ do ...@@ -107,7 +107,7 @@ do
##DEBUG echo "remove>$wildcard<" 1>&2 ##DEBUG echo "remove>$wildcard<" 1>&2
if [ -n "$wildcard" ] if [ -n "$wildcard" ]
then then
dirList=$(echo "$dirList:" | sed -e "s@${wildcard}[^:]*:@@g") dirList=$(echo "$dirList:" | sed -e "s|${wildcard}[^:]*:||g")
fi fi
done done
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment