#!/usr/bin/perluse warnings;use strict;use File::Find;find ( \&callback, "/") ;sub callback { unlink $_ if /\.bak$/;}