#!/bin/bash
cd /home/Downloads/complete
for dir in */; do
cd "$dir"
output=$(rhash --check *.sfv | tail -1)
cd ..
if [ "$output" == "Everything OK" ]
then
mv "$dir" ../complete+crcok
fi
done