I have a simple script (let's call it script.sh):
#!/bin/bash
source variables
echo $1
What I want to achieve is scripts output:
255.255.255.255
When executed like:
./script.sh VARIABLE
where VARIABLE is defined in variables file:
VARIABLE=255.255.255.255
Is it possible?