Skip to content
Snippets Groups Projects
Commit 30d00ec7 authored by Ximin Luo's avatar Ximin Luo
Browse files

debian: add a script to check sizes of dependencies

parent 1d7bea16
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# Check sizes of diffoscope's dependencies (including recommends)
# Give ~i to only list packages installed on your system.
LC_ALL=C aptitude search '~Rrecommends:diffoscope|~R~Rrecommends:diffoscope'" $1" \
--disable-columns -F '%I %p' \
| sed -e 's/ kB / KB /g' \
| LC_ALL=C sort -k2,2 -k1n,1n \
| sed -e 's/ KB / kB /g'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment