You can view variables that are handed over to your script like this:
#!/bin/bash
echo "First parameter: $1"
echo "Second parameter: $2"
echo "And so on...."
echo "Number of parameters: $#"
So for your exmaple the following code could be possible:
**Increase** : `./inc_script.sh /path/to/file 5`
#!/bin/bash
AMOUNT=$(cat $1)
echo $(($AMOUNT + $2)) > $1
**Decrease** : `./dec_script.sh /path/to/file 5`
#!/bin/bash
AMOUNT=$(cat $1)
echo $(($AMOUNT - $2)) > $1
With `$()` you can execute a command in a subshell. With the `$(())` notation you can calculate in bash.