#!/bin/bashecho "判断是不是root用户,是的情况下继续执行"read -ep "请输入用户" yh if [ $yh = root ] then cd /root else echo "不是root用户,权限不够" fi