Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
We started with the following code for the test:#!/bin/bash
if [[ -n "$1" ]]; then echo "#RUN_OK"
else
# ERROR
echo "You need to pass the host ip address"
exit
fi
if [[ -n "$2" ]]; then echo "#RUN_OK"
else
# ERROR
echo "You need to calcul...