728x90
반응형

shell script

#! /bin/bash

# check root
if [ "$EUID" -ne 0 ]; then
	echo "root 권한 실행 필요"
	exit
fi

 

실습

  • test 계정으로 파일 실행
  • EUID 확인 후 아닐 경우 exit 수행

 

728x90

+ Recent posts