Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
177 B

  1. #!/bin/sh
  2. apt-file update
  3. zcat ~/.cache/apt-file/*.gz | \
  4. egrep '^(usr/bin/|sbin/|bin/)' | \
  5. cut -f1 -d' ' | \
  6. perl -pe 's/^(.*)\/(.*)$/$2/' | \
  7. sort | uniq > ~/used_names.txt