I have a simple command for identify when file is empty but not works
 MN=$(echo "$(cat   empty)") ;
if [ MN == "" ]; then echo "This file is empty"; else echo "This file has been edited. You'll need to do it manually."; fi
whats I doing wrong
Please help me
 
    