I have written the following lines to get the last character of a string:
str=$1 i=$((${#str}-1)) echo ${str:$i:1}
It works for abcd/
abcd/
echo $str | cut -c $((${#str}))
is a good approach