#!/bin/sh
# dec2hex --  octal to hex conversion.
#

(D=$[0$1];echo `echo $D|awk '{printf("%x\n",$1)}'`)
