hi
how to replace only the first value of MODE parameter in the bash script from "ON" to "OFF" by VB script?
the bash script location: C:\folder_scripts\script.bash
THX
Yael
the bash script (txt file):
!/bin/bash
MODE=ON
if [[ $MODE = ON ]]
then
echo "the machine is on line"
elif [[ $MODE = OFF ]]
echo "the machine is OFF line"
fi
. . .