#!/bin/bash

dir=`dirname $0`
cmd=$1
echo '当前用户权限不够，请输入管理员(root)密码'
su -c "$cmd"

sleep 3
exit 0
