That will just display all lines in all files that do not contain "Dummy file".
Try this instead:
Code:
# list files that *do* contain "Dummy file" and save in a file
grep -l "Dummy file" * > /tmp/matches
# use that file to exclude them from the list of files
ls | grep -xvf /tmp/matches