2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
8 #-------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
29 # Usage: foamCleanPath [-strip] path [wildcard] .. [wildcard]
31 # Prints its argument (which should be a ':' separated path)
33 # - duplicate elements
34 # - elements whose start matches a wildcard
35 # - inaccessible directories (with the -strip (at your option)
38 # - this routine will fail when directories have embedded spaces
39 # - false matches possible if a wildcard contains '.' (sed regex)
40 # - the wildcards can themselves can be written together and separated
41 # by colons or whitespace
42 #------------------------------------------------------------------------------
45 Usage: ${0##*/} [OPTION] path [wildcard1] .. [wildcardN]
47 -strip remove inaccessible directories
50 Prints its argument (which should be a ':' separated list) cleansed from
52 - elements whose start matches one of the wildcard(s)
53 - inaccessible directories (with the -strip (at your option)
57 1 for miscellaneous errors.
58 2 initial value of 'path' is empty
84 [ "$#" -ge 1 ] || usage
89 [ -n "$1" ] ||
exit 2 # quick exit on empty 'dirList'
92 ##DEBUG echo "input>$dirList<" 1>&2
94 # preserve current IFS and split on colon or whitespace
98 # "wildcard1 ... wildcardN" may have been passed as a single parameter
99 # or may contain ':' separators
102 # strip out wildcards via sed
107 ##DEBUG echo "remove>$wildcard<" 1>&2
108 if [ -n "$wildcard" ]
110 dirList
=$
(echo "$dirList:" |
sed -e "s@${wildcard}[^:]*:@@g")
114 # split on ':' (and on space as well to avoid any surprises)
118 ##DEBUG echo "intermediate>$dirList<" 1>&2
120 # rebuild the list from scratch
124 ##DEBUG echo "check>$dir<" 1>&2
129 duplicate
=$
(echo " $dirList " |
sed -ne "s@ $dir @DUP@p")
131 if [ ! "$duplicate" ]
133 dirList
="$dirList $dir"
135 elif [ "$strip" != true
]
137 # Print non-existing directories if not in 'strip' mode.
138 dirList
="$dirList $dir"
142 # split on whitespace
153 ##DEBUG echo "output>$dirList<" 1>&2
156 # -----------------------------------------------------------------------------