All pastes #2067675 Raw Edit

angvp

public text v1 · immutable
#2067675 ·published 2011-05-23 14:51 UTC
rendered paste body
#!/bin/bash

shopt -s nullglob

for file in *.pm; do
  if pkgfile "$file" | grep -q 'local/perl'; then
    printf '%s is duplicated\n' "$file"
  fi
don