I am pulling my hair out,
#!/bin/sh
queryNumber=10
if [ "$1" == "start" ]; then
systemctl start myProcess@{1..$queryNumber}
elif [ "$1" == "stop" ]; then
systemctl stop myProcess@*
fi
Does anybody knows why I am not being able to pass the $queryNumber
parameter onto the shell script