You can use the following Bash command to check if a file starting with "hello_" exists in the /backup/ directory and delete it if it does:
if ls /backup/hello_* 1> /dev/null 2>&1; then rm /backup/hello_* echo "Files deleted"else echo "No matching files found"fi