File: apt-listchanges

package info (click to toggle)
cruft 0.9.16
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,308 kB
  • sloc: ansic: 803; perl: 315; sh: 178; makefile: 61
file content (4 lines) | stat: -rwxr-xr-x 170 bytes parent folder | download | duplicates (6)
1
2
3
4
#!/bin/dash
p='apt-listchanges'
set -e
dpkg-query --listfiles "${p}" | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | while read o; do if [ -e "$o" ]; then echo "$o"; fi; done