Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created February 4, 2014 15:25
Show Gist options
  • Select an option

  • Save waffle2k/8805769 to your computer and use it in GitHub Desktop.

Select an option

Save waffle2k/8805769 to your computer and use it in GitHub Desktop.
Search a given perl file for Debian dependencies within the package management.
#!/bin/sh
perl -lane 'print "$1.pm" if /^\s*use\s+(\S+)\s?.*?\;/' $1 | sed 's/::/\//g' | xargs -n1 dpkg -S
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment