#!/bin/sh

testn=$(echo "一四五零四八七" | numconv)
if [ "$testn" = "1450487" ]; then
    echo $testn
else
    exit 1
fi
