GITLAB

CDPP / DDServer

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
10e40a5d8efaad28c2a593bba83c7739ab81e511
  • DDServer
  • scripts
  • RemoveVI.sh
  • 8c0d5a9f   correct location for NumOutput.html + scripts Browse Code »
    Elena.Budnik
    7 years ago  
RemoveVI.sh 250 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/sh

if [ $# -eq 0 ]
	then
		echo "ViId [BaseId] should be defined"
		exit
	fi

BASEDIR=$(dirname "$0")

. ${BASEDIR}/DDServer.env

if [ $# -eq 1 ]
	then
		php ${DATAMANAGER}/RemoveVI.php $1
	else 
		php ${DATAMANAGER}/RemoveVI.php $1 $2
fi