Help for this page

Select Code to Download


  1. or download this
        find /path/ -size 0 |
        perl -ple 's/\x27/\x27"\x27"\x27/g; "\x27$_\x27"' |
        xargs -n ... rm
    
  2. or download this
        find /path/ -size 0 | perl -nle 'unlink or warn "unlink $_: $!\n"'