Simple script. confused by what is expected in line 2. New to this but feeling like I'm spinning wheels trying to get pseudo code to run.
#!/bin/bash
if [ $a -gt 10 ]
then
echo "Greater than 10, subtracting 1"
let a -=1
else
echo "Less than or equal to 10"
fi