How can we pass arguments to a script in Linux? And how to access these arguments from within the script? code example
Example: how to execute script and pass a parameterin linux
echo "Username: $1";
echo "Age: $2";
echo "Full Name: $3";
echo "Username: $1";
echo "Age: $2";
echo "Full Name: $3";