Needed to remove bunch of files that are not matching list given to me, so to leave only the files that are on the list, which turned out to be a little hard, or at least for me.
That did the trick:
find . -name "*" | grep -vFf update_images.csv | xargs rm -f
If the file names contain white spaces, you will have to use the following command, but I haven’t tested it myself:
find . -name "*" | grep -vFf update_images.csv |sed 's/^/"/;s/$/"/' | xargs rm -rf