mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: avoid old-style shell backticks in various places
This commit is contained in:
@ -44,9 +44,9 @@ done
|
||||
|
||||
sample $timeOpt
|
||||
SDIR=sets
|
||||
LSDIR=`ls $SDIR | head -1`
|
||||
EXAMPLE_FILE=`ls -1 $SDIR/${LSDIR}/* | head -1`
|
||||
FS=`basename $EXAMPLE_FILE | cut -d_ -f2-`
|
||||
LSDIR=$(ls $SDIR | head -1)
|
||||
EXAMPLE_FILE=$(ls -1 $SDIR/${LSDIR}/* | head -1)
|
||||
FS=$(basename $EXAMPLE_FILE | cut -d_ -f2-)
|
||||
|
||||
for d in $SDIR/*
|
||||
do
|
||||
|
||||
Reference in New Issue
Block a user