Created
February 2, 2012 13:11
-
-
Save jcfr/1723398 to your computer and use it in GitHub Desktop.
This script allows to clean the CLI build directory following an update to revision >= 19202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# 1) Save this file in <Slicer-Superbuild/Slicer-build>. | |
# 2) Chmod u+x CleanCLIModuleBuildDirectory.sh | |
# 3) Run the script | |
# 4) Rebuild | |
# | |
cliBinSubDirectory=./lib/Slicer-4.0/cli-modules/ | |
for moduleName in \ | |
Realign \ | |
Add \ | |
Cast \ | |
CheckerBoard \ | |
ImageReadDicomWrite \ | |
DiffusionTensorMathematics \ | |
DiffusionTensorEstimation \ | |
RegisterImagesSlicer \ | |
AffineRegistration \ | |
BSplineDeformableRegistration \ | |
RigidRegistration \ | |
TransformFromFiducials \ | |
jointLMMSE \ | |
DiffusionWeightedMasking \ | |
Mask \ | |
SparseFieldLevelSetContour \ | |
Multiply \ | |
OrientImage \ | |
PolyDataToLabelmap \ | |
ResampleDTI \ | |
ResampleVolume2 \ | |
ResampleVolume \ | |
dwiNoiseFilter \ | |
RegisterImagesMultiRes \ | |
ConfidenceConnected \ | |
Subtract \ | |
ComputeSUVBodyWeight \ | |
Threshold \ | |
Seeding \ | |
dwiUNLM | |
do | |
echo ">> Removing $cliBinSubDirectory*$moduleName* ..." | |
rm -rfv $cliBinSubDirectory*$moduleName* | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment