#!/bin/bash -
usage()
{
		echo "Usage:
		$0 <package_name>

		Example:
		$0 com.marvell.otaclient"
		exit 1
}

if test $# -ne 1; then
	usage
fi

target_path=/data/data/$1

if test -d $target_path; then
	stat -c %u $target_path
else
	usage
fi
