쉘 스크립트에서 경고 배너가 생성되었는지 확인하는 방법

쉘 스크립트에서 경고 배너가 생성되었는지 확인하는 방법

if else 문을 사용하여 생성된 경고 배너를 표시하는 스크립트를 실행하려면 어떤 명령이 필요합니까?

예를 들어:

If [something == something]
   echo " Banners created"
else
   echo "Banners not created"
   echo " Details: "
   echo $( /bin/ls -l /etc/motd)

답변1

if grep -q 'mywarning' /etc/motd; then
    echo " Banners created"
else echo "Banners not created"
    echo " Details: $(/bin/ls -l /etc/motd)"
fi

관련 정보