To delete all files in the folder /backup/ except the ones starting with 'Hello_', you can use the following Bash command:
find /backup/ -type f ! -name 'Hello_*' -delete