linux how to input parameters through a script and through user input code example
Example: how to take input in bash
#!/bin/bash
read -p "give input! " STOREDVAR
echo $STOREDVAR
#!/bin/bash
read -p "give input! " STOREDVAR
echo $STOREDVAR