User Tools

Site Tools


packages:package_dependencies

This is an old revision of the document!


Packages - Find Package Dependencies

#!/bin/bash
#
# Recursively show dependencies of packages.
 
pkgdep() {
  apt-cache depends --installed $1 | awk -F\: '{print $2}' | grep -v -e '<' -e '>' | awk 'NF'
}
 
for i in $(pkgdep $1); do
  pkgdep $i
done | sort -u

Save and chmod +x. Execute with one package as parameter.

If you also want non-installed packages shown, remove the --installed parameter.

Example:

dep.sh bash
  bash
  debconf
  debianutils
  dpkg
  initscripts
  libc6
  libc-bin
  libgcc1
  libncurses5
  locales
  multiarch-support
  sensible-utils
  tzdata
packages/package_dependencies.1467385240.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki