From b176818f174c3dd0b9c99aae3f5aea6d26f9468f Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 2 Jul 2009 07:14:38 +0000 Subject: [PATCH] Issue 0020414: rm -rf unprotected in a script of SALOME Application --- bin/appli_clean.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/bin/appli_clean.sh b/bin/appli_clean.sh index a5413a737..8c5151431 100644 --- a/bin/appli_clean.sh +++ b/bin/appli_clean.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, @@ -21,5 +21,14 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # #clean appli -# -rm -rf bin lib share doc idl env.d envd USERS getAppliPath.py searchFreePort.sh runAppli runConsole runSession runRemote.sh runTests SalomeApp.xml *.pyc *~ .bashrc + +DELCOM="rm -rf bin lib share doc idl env.d envd USERS getAppliPath.py searchFreePort.sh runAppli runConsole runSession runRemote.sh runTests SalomeApp.xml *.pyc *~ .bashrc" +echo "Do you want to delete a SALOME application in this directory ? " `pwd` +echo "command to execute: " $DELCOM +echo "enter yes or no" +read ANSWER +echo "ANSWER="$ANSWER +if [ "x$ANSWER" == "xyes" ] +then + $DELCOM +fi -- 2.39.2