2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
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/>.
30 #------------------------------------------------------------------------------
33 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
36 Usage: ${0##*/} [OPTION] [dir1] .. [dirN]
38 -make limit selection to 'Make/\$WM_OPTIONS*'
41 Find and touch all .o files in the specified directories.
42 Uses the cwd by default if no directories are specified.
44 Current value of WM_OPTIONS=$WM_OPTIONS
61 [ -n "$WM_OPTIONS" ] || usage
"Error: -make option only valid when \$WM_OPTIONS is set"
66 usage
"unknown option: '$*'"
75 # no directories specified: default is pwd
76 [ "$#" -gt 0 ] ||
set -- .
82 if [ "$restrictOpt" = true
]
84 echo "touching all .o files under Make/$WM_OPTIONS* : $i"
85 find $i -depth -name Make
-type d
-print | \
86 xargs -i find '{}' -depth -name "$WM_OPTIONS*" -type d
-print | \
87 xargs -i find '{}' -name '*.o' -type f
-print | \
90 echo "touching all .o files: $i"
91 find $i -name '*.o' -type f
-print |
xargs -t touch
94 echo "no directory: $i"
98 #------------------------------------------------------------------------------