Salome HOME
Remove build directory
[tools/install.git] / config_files / checkSize.sh
index b1e61868810a56eb827352558a8f7c2cb357c9c2..bc921c632213251b6b07e20eb21b7b1cb595cad1 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash -noprofile
 
 ####################################################################################
 #  File      : checkSize.sh
@@ -6,7 +6,7 @@
 #  Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
 #  Project   : SALOME
 #  Module    : Installation Wizard
-#  Copyright : 2002-2006 CEA
+#  Copyright : 2002-2008 CEA
 #
 #  This script is the part of the SALOME installation procedure.
 #
 #
 ####################################################################################
 
-var=`df -k "$1" | awk '{print $4}'`
+if [ $# -lt 2 ] ; then
+    echo "`basename $0` : wrong parameters"
+    exit 1
+fi
+var=`df -Pk "$1" | awk '{print $4}'`
 for i in $var; do var=$i; done
 if [ "$var" -lt "$2" ]; then
    echo "Available disk space is $var Kb"