ScodocTestClient/scriptCreationDepartement.sh
2021-05-21 16:30:09 +02:00

10 lines
172 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 2 ];
then
echo "Pas assez d'arguments"
exit 2
fi
ssh $1 /bin/bash<< EOF
cd /opt/scodoc/Products/ScoDoc/config
./create_dept.sh -n ${2}
EOF