mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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..."
|
||||
|
||||
Reference in New Issue
Block a user