#!/bin/bash
MM=$1
echo $MM is $MM
NN=`echo $MM | awk '{printf "%c", 97 + $1}'`
echo $NN is $NN
unset NN
unset MM
Hop