foamSequenceVTKFiles: Avoid the -s and -a options for basename
Only recent GNU/Linux distributions support this functionality Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1947
This commit is contained in:
parent
5c658dbfa2
commit
71f13ec9dd
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ if [ ! -d $DIR ]; then
|
|||
fi
|
||||
|
||||
FILES=$(find $DIR -type f -name *vtk)
|
||||
NAMES=$(basename -s .vtk -a $FILES | sort -u)
|
||||
NAMES=$(for f in $FILES; do basename $f .vtk; done | sort -u)
|
||||
|
||||
if [ -d $OUT ]; then
|
||||
echo "$OUT directory already exists. Deleting links within it..."
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue