From ded09d6461cca461a8d785d6e59e3c465c40493e Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Tue, 11 Jul 2017 14:47:50 +0200 Subject: [PATCH] STYLE: relocate deprecated utilities into separate directory --- bin/deprecated/foamGraphExecTime | 52 +++++++++++++++++++++++++ bin/deprecated/foamGraphResKE | 64 +++++++++++++++++++++++++++++++ bin/deprecated/foamGraphResUVWP | 64 +++++++++++++++++++++++++++++++ bin/deprecated/stressComponents | 39 +++++++++++++++++++ bin/deprecated/wallGradU | 37 ++++++++++++++++++ bin/deprecated/wdot | 37 ++++++++++++++++++ bin/foamGraphExecTime | 53 +------------------------- bin/foamGraphResKE | 65 +------------------------------- bin/foamGraphResUVWP | 65 +------------------------------- bin/stressComponents | 40 +------------------- bin/wallGradU | 38 +------------------ bin/wdot | 38 +------------------ 12 files changed, 299 insertions(+), 293 deletions(-) create mode 100755 bin/deprecated/foamGraphExecTime create mode 100755 bin/deprecated/foamGraphResKE create mode 100755 bin/deprecated/foamGraphResUVWP create mode 100755 bin/deprecated/stressComponents create mode 100755 bin/deprecated/wallGradU create mode 100755 bin/deprecated/wdot mode change 100755 => 120000 bin/foamGraphExecTime mode change 100755 => 120000 bin/foamGraphResKE mode change 100755 => 120000 bin/foamGraphResUVWP mode change 100755 => 120000 bin/stressComponents mode change 100755 => 120000 bin/wallGradU mode change 100755 => 120000 bin/wdot diff --git a/bin/deprecated/foamGraphExecTime b/bin/deprecated/foamGraphExecTime new file mode 100755 index 0000000000..5bacabe4a1 --- /dev/null +++ b/bin/deprecated/foamGraphExecTime @@ -0,0 +1,52 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# foamGraphExecTime +# +# Description +# Deprecated script extract the 'ExecutionTime' for each time-step from a +# log file for graphing. +# +# Superseded by the more general foamLog script. +#------------------------------------------------------------------------------ +Script=${0##*/} + +if [ ! -f "$1" ]; then + echo "$Script: $1 is not a valid filename" + exit 1 +fi + +tmpTime=newTime$$.dat +cat $1 | \ + grep "ExecutionTime = " | \ + awk 'BEGIN { NENTRIES = 0 ; TPREV = 0.0 }{NENTRIES++; printf("%f %e\n", NENTRIES, $3 - TPREV); TPREV = $3}' - > $tmpTime + +if [ "$(cat $tmpTime | wc -l)" -gt 1 ]; then + mv $tmpTime executionTime.dat +fi + +rm -f $tmpTime + +#------------------------------------------------------------------------------ diff --git a/bin/deprecated/foamGraphResKE b/bin/deprecated/foamGraphResKE new file mode 100755 index 0000000000..e023c71090 --- /dev/null +++ b/bin/deprecated/foamGraphResKE @@ -0,0 +1,64 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# foamGraphResKE +# +# Description +# Deprecated script extract initial turbulence residuals for each time-step +# from a log file for graphing. +# +# Superseded by the more general foamLog script. +#------------------------------------------------------------------------------ +Script=${0##*/} + +if [ ! -f "$1" ]; then + echo "$Script: $1 is not a valid filename" + exit 1 +fi + +scan() +{ + tmpFile=new$1$$.dat + cat $2 | \ + grep "Solving for $1" | \ + grep -v "solution singularity" | \ + sed s/,//g | \ + awk 'BEGIN { NENTRIES = 0 }{NENTRIES++; printf("%d %e\n", NENTRIES, $8)}' - > $tmpFile + + if [ "$(cat $tmpFile | wc -l)" -gt 1 ]; then + echo >> residualKE.dat + cat $tmpFile >> residualKE.dat + fi + + rm $tmpFile +} + +rm -f residualKE.dat +scan "k" $1 +scan "epsilon" $1 +scan "omega" $1 +scan "nuTilda" $1 + +#------------------------------------------------------------------------------ diff --git a/bin/deprecated/foamGraphResUVWP b/bin/deprecated/foamGraphResUVWP new file mode 100755 index 0000000000..8f8fcaccd3 --- /dev/null +++ b/bin/deprecated/foamGraphResUVWP @@ -0,0 +1,64 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# foamGraphResUVWP +# +# Description +# Deprecated script extract initial velocity and pressure residuals for each +# time-step from a log file for graphing. +# +# Superseded by the more general foamLog script. +#------------------------------------------------------------------------------ +Script=${0##*/} + +if [ ! -f "$1" ]; then + echo "$Script: $1 is not a valid filename" + exit 1 +fi + +scan() +{ + tmpFile=new$1$$.dat + cat $2 | \ + grep "Solving for $1" | \ + grep -v "solution singularity" | \ + sed s/,//g | \ + awk 'BEGIN { NENTRIES = 0 }{NENTRIES++; printf("%d %e\n", NENTRIES, $8)}' - > $tmpFile + + if [ "$(cat $tmpFile | wc -l)" -gt 1 ]; then + echo >> residualUVWP.dat + cat $tmpFile >> residualUVWP.dat + fi + + rm $tmpFile +} + +rm -f residualUVWP.dat +scan "Ux" $1 +scan "Uy" $1 +scan "Uz" $1 +scan "p" $1 + +#------------------------------------------------------------------------------ diff --git a/bin/deprecated/stressComponents b/bin/deprecated/stressComponents new file mode 100755 index 0000000000..45888e2564 --- /dev/null +++ b/bin/deprecated/stressComponents @@ -0,0 +1,39 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2016-2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# stressComponents +# +# Description +# Script to suggest using the new "-postProcess" solver option. +# +#------------------------------------------------------------------------------ +Script=${0##*/} + +echo $Script "has been superseded by the -postProcess solver option:" +echo " -funcs '(R components(turbulenceProperties:R))'" +echo "e.g." +echo "simpleFoam -postProcess -funcs '(R components(turbulenceProperties:R))'" + +#------------------------------------------------------------------------------ diff --git a/bin/deprecated/wallGradU b/bin/deprecated/wallGradU new file mode 100755 index 0000000000..c44ed73ff8 --- /dev/null +++ b/bin/deprecated/wallGradU @@ -0,0 +1,37 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# wallGradU +# +# Description +# Script to suggest using the new "postProcess" utility. +# +#------------------------------------------------------------------------------ +Script=${0##*/} + +echo $Script "has been superseded by the postProcess utility:" +echo " postProcess -func 'grad(U)'" + +#------------------------------------------------------------------------------ diff --git a/bin/deprecated/wdot b/bin/deprecated/wdot new file mode 100755 index 0000000000..d569cbfe6f --- /dev/null +++ b/bin/deprecated/wdot @@ -0,0 +1,37 @@ +#!/bin/sh +#------------------------------------------------------------------------------ +# ========= | +# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox +# \\ / O peration | +# \\ / A nd | Copyright (C) 2017 OpenFOAM Foundation +# \\/ M anipulation | +#------------------------------------------------------------------------------- +# License +# This file is part of OpenFOAM. +# +# OpenFOAM is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenFOAM. If not, see . +# +# Script +# wdot +# +# Description +# Script to suggest using the new "postProcess" utility. +# +#------------------------------------------------------------------------------ +Script=${0##*/} + +echo $Script "has been superseded by the postProcess utility:" +echo "postProcess -func XiReactionRate" + +#------------------------------------------------------------------------------ diff --git a/bin/foamGraphExecTime b/bin/foamGraphExecTime deleted file mode 100755 index 5bacabe4a1..0000000000 --- a/bin/foamGraphExecTime +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# foamGraphExecTime -# -# Description -# Deprecated script extract the 'ExecutionTime' for each time-step from a -# log file for graphing. -# -# Superseded by the more general foamLog script. -#------------------------------------------------------------------------------ -Script=${0##*/} - -if [ ! -f "$1" ]; then - echo "$Script: $1 is not a valid filename" - exit 1 -fi - -tmpTime=newTime$$.dat -cat $1 | \ - grep "ExecutionTime = " | \ - awk 'BEGIN { NENTRIES = 0 ; TPREV = 0.0 }{NENTRIES++; printf("%f %e\n", NENTRIES, $3 - TPREV); TPREV = $3}' - > $tmpTime - -if [ "$(cat $tmpTime | wc -l)" -gt 1 ]; then - mv $tmpTime executionTime.dat -fi - -rm -f $tmpTime - -#------------------------------------------------------------------------------ diff --git a/bin/foamGraphExecTime b/bin/foamGraphExecTime new file mode 120000 index 0000000000..f6fb34291e --- /dev/null +++ b/bin/foamGraphExecTime @@ -0,0 +1 @@ +deprecated/foamGraphExecTime \ No newline at end of file diff --git a/bin/foamGraphResKE b/bin/foamGraphResKE deleted file mode 100755 index e023c71090..0000000000 --- a/bin/foamGraphResKE +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# foamGraphResKE -# -# Description -# Deprecated script extract initial turbulence residuals for each time-step -# from a log file for graphing. -# -# Superseded by the more general foamLog script. -#------------------------------------------------------------------------------ -Script=${0##*/} - -if [ ! -f "$1" ]; then - echo "$Script: $1 is not a valid filename" - exit 1 -fi - -scan() -{ - tmpFile=new$1$$.dat - cat $2 | \ - grep "Solving for $1" | \ - grep -v "solution singularity" | \ - sed s/,//g | \ - awk 'BEGIN { NENTRIES = 0 }{NENTRIES++; printf("%d %e\n", NENTRIES, $8)}' - > $tmpFile - - if [ "$(cat $tmpFile | wc -l)" -gt 1 ]; then - echo >> residualKE.dat - cat $tmpFile >> residualKE.dat - fi - - rm $tmpFile -} - -rm -f residualKE.dat -scan "k" $1 -scan "epsilon" $1 -scan "omega" $1 -scan "nuTilda" $1 - -#------------------------------------------------------------------------------ diff --git a/bin/foamGraphResKE b/bin/foamGraphResKE new file mode 120000 index 0000000000..6f00aa885b --- /dev/null +++ b/bin/foamGraphResKE @@ -0,0 +1 @@ +deprecated/foamGraphResKE \ No newline at end of file diff --git a/bin/foamGraphResUVWP b/bin/foamGraphResUVWP deleted file mode 100755 index 8f8fcaccd3..0000000000 --- a/bin/foamGraphResUVWP +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# foamGraphResUVWP -# -# Description -# Deprecated script extract initial velocity and pressure residuals for each -# time-step from a log file for graphing. -# -# Superseded by the more general foamLog script. -#------------------------------------------------------------------------------ -Script=${0##*/} - -if [ ! -f "$1" ]; then - echo "$Script: $1 is not a valid filename" - exit 1 -fi - -scan() -{ - tmpFile=new$1$$.dat - cat $2 | \ - grep "Solving for $1" | \ - grep -v "solution singularity" | \ - sed s/,//g | \ - awk 'BEGIN { NENTRIES = 0 }{NENTRIES++; printf("%d %e\n", NENTRIES, $8)}' - > $tmpFile - - if [ "$(cat $tmpFile | wc -l)" -gt 1 ]; then - echo >> residualUVWP.dat - cat $tmpFile >> residualUVWP.dat - fi - - rm $tmpFile -} - -rm -f residualUVWP.dat -scan "Ux" $1 -scan "Uy" $1 -scan "Uz" $1 -scan "p" $1 - -#------------------------------------------------------------------------------ diff --git a/bin/foamGraphResUVWP b/bin/foamGraphResUVWP new file mode 120000 index 0000000000..0414911d86 --- /dev/null +++ b/bin/foamGraphResUVWP @@ -0,0 +1 @@ +deprecated/foamGraphResUVWP \ No newline at end of file diff --git a/bin/stressComponents b/bin/stressComponents deleted file mode 100755 index 45888e2564..0000000000 --- a/bin/stressComponents +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2016-2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# stressComponents -# -# Description -# Script to suggest using the new "-postProcess" solver option. -# -#------------------------------------------------------------------------------ -Script=${0##*/} - -echo $Script "has been superseded by the -postProcess solver option:" -echo " -funcs '(R components(turbulenceProperties:R))'" -echo "e.g." -echo "simpleFoam -postProcess -funcs '(R components(turbulenceProperties:R))'" - -#------------------------------------------------------------------------------ diff --git a/bin/stressComponents b/bin/stressComponents new file mode 120000 index 0000000000..2f3bb9ee36 --- /dev/null +++ b/bin/stressComponents @@ -0,0 +1 @@ +deprecated/stressComponents \ No newline at end of file diff --git a/bin/wallGradU b/bin/wallGradU deleted file mode 100755 index c44ed73ff8..0000000000 --- a/bin/wallGradU +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# wallGradU -# -# Description -# Script to suggest using the new "postProcess" utility. -# -#------------------------------------------------------------------------------ -Script=${0##*/} - -echo $Script "has been superseded by the postProcess utility:" -echo " postProcess -func 'grad(U)'" - -#------------------------------------------------------------------------------ diff --git a/bin/wallGradU b/bin/wallGradU new file mode 120000 index 0000000000..70dbc7d577 --- /dev/null +++ b/bin/wallGradU @@ -0,0 +1 @@ +deprecated/wallGradU \ No newline at end of file diff --git a/bin/wdot b/bin/wdot deleted file mode 100755 index d569cbfe6f..0000000000 --- a/bin/wdot +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------ -# ========= | -# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox -# \\ / O peration | -# \\ / A nd | Copyright (C) 2017 OpenFOAM Foundation -# \\/ M anipulation | -#------------------------------------------------------------------------------- -# License -# This file is part of OpenFOAM. -# -# OpenFOAM is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenFOAM. If not, see . -# -# Script -# wdot -# -# Description -# Script to suggest using the new "postProcess" utility. -# -#------------------------------------------------------------------------------ -Script=${0##*/} - -echo $Script "has been superseded by the postProcess utility:" -echo "postProcess -func XiReactionRate" - -#------------------------------------------------------------------------------ diff --git a/bin/wdot b/bin/wdot new file mode 120000 index 0000000000..433eb78038 --- /dev/null +++ b/bin/wdot @@ -0,0 +1 @@ +deprecated/wdot \ No newline at end of file