From: Arnaud Giersch Date: Thu, 27 Jul 2017 07:26:54 +0000 (+0200) Subject: Shell scripts: replace backquotes with $(). X-Git-Tag: v3_17~316^2~4^2~7 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a78c4213215c3991c47dd32da49028c075d8d9d3?ds=sidebyside Shell scripts: replace backquotes with $(). --- diff --git a/src/smpi/smpirun.in b/src/smpi/smpirun.in index a8c75e1290..8889a0059d 100755 --- a/src/smpi/smpirun.in +++ b/src/smpi/smpirun.in @@ -298,7 +298,7 @@ fi UNROLLEDHOSTFILETMP=0 #parse if our lines are terminated by :num_process -multiple_processes=`grep -c ":" $HOSTFILE` +multiple_processes=$(grep -c ":" $HOSTFILE) if [ "${multiple_processes}" -gt 0 ] ; then UNROLLEDHOSTFILETMP=1 UNROLLEDHOSTFILE="$(mktemp smpitmp-hostfXXXXXX)" @@ -311,7 +311,7 @@ if [ "${multiple_processes}" -gt 0 ] ; then fi # Don't use wc -l to compute it to avoid issues with trailing \n at EOF -hostfile_procs=`grep -c "[a-zA-Z0-9]" $HOSTFILE` +hostfile_procs=$(grep -c "[a-zA-Z0-9]" $HOSTFILE) if [ ${hostfile_procs} = 0 ] ; then echo "[`basename $0`] ** error: the hostfile '${HOSTFILE}' is empty. Aborting." >&2 exit 1 @@ -401,10 +401,10 @@ fi ## hostfile has less than i lines. ##---------------------------------------------------------- -HAVE_SEQ="`which seq 2>/dev/null`" +HAVE_SEQ="$(which seq 2>/dev/null)" if [ -n "${HAVE_SEQ}" ]; then - SEQ=`${HAVE_SEQ} 0 $((${NUMPROCS}-1))` + SEQ=$(${HAVE_SEQ} 0 $((${NUMPROCS}-1))) else cnt=0 while [ $cnt -lt ${NUMPROCS} ] ; do diff --git a/teshsuite/smpi/mpich3-test/generate_report b/teshsuite/smpi/mpich3-test/generate_report index ac33562311..1b3c55efa3 100755 --- a/teshsuite/smpi/mpich3-test/generate_report +++ b/teshsuite/smpi/mpich3-test/generate_report @@ -2,8 +2,8 @@ explore_files() { - for cmake in `find -name CMakeLists.txt` ; do - d=`dirname $cmake` + for cmake in $(find -name CMakeLists.txt) ; do + d=$(dirname $cmake) echo;echo "Directory $d" diff --git a/tools/git-hooks/clang-format.pre-commit b/tools/git-hooks/clang-format.pre-commit index db2e47aad2..8d1bd55ce4 100755 --- a/tools/git-hooks/clang-format.pre-commit +++ b/tools/git-hooks/clang-format.pre-commit @@ -43,7 +43,7 @@ CLANG_FORMAT=$(which clang-format-3.8) for name in git-clang-format-3.9 git-clang-format-3.8 git-clang-format ; do where=$(which $name) if [ x != "x$where" ] ; then - GIT_SUBCOMMAND=`echo $name|sed 's/git-//'` + GIT_SUBCOMMAND=$(echo $name|sed 's/git-//') break fi done @@ -74,10 +74,10 @@ canonicalize_filename () { local result="" # Need to restore the working directory after work. - pushd `pwd` > /dev/null + pushd $(pwd) > /dev/null cd "$(dirname "$target_file")" - target_file=`basename $target_file` + target_file=$(basename $target_file) # Iterate down a (possible) chain of symlinks while [ -L "$target_file" ] @@ -89,7 +89,7 @@ canonicalize_filename () { # Compute the canonicalized name by finding the physical path # for the directory we're in and appending the target file. - physical_directory=`pwd -P` + physical_directory=$(pwd -P) result="$physical_directory"/"$target_file" # restore the working directory after work.