Shell
Python
Perl
Cannot retrieve the latest commit at this time.
| Failed to load latest commit information. | |||
|
|
bash_completion | ||
|
|
debian | ||
|
|
debmany | ||
|
|
examples | ||
|
|
README | ||
|
|
check-enhancements | ||
|
|
checkrestart | ||
|
|
checkrestart.1 | ||
|
|
debget | ||
|
|
debget.pod | ||
|
|
debman |
|
|
|
|
debman.1 | ||
|
|
debpaste | ||
|
|
dglob | ||
|
|
dglob.pod | ||
|
|
dgrep | ||
|
|
dgrep.pod | ||
|
|
dhomepage |
|
|
|
|
dhomepage.1 | ||
|
|
dpigs | ||
|
|
dpigs.pod | ||
|
|
popbugs | ||
|
|
popbugs.1 | ||
|
|
restart-services | ||
|
|
restart-services.1 | ||
|
|
which-pkg-broke | ||
|
|
which-pkg-broke.1 | ||
README
There is no substantial documentation yet. Volunteer authors are
more than welcome. Here are some examples to get you started.
# Search all files in specified packages for a regex
$ dgrep <pattern> <package>...
# Search through all files in all installed packages for a regex
$ dgrep <pattern> '.*'
# Same, but also search inside compressed files
$ dzgrep <pattern> '.*'
# Calculate the total disk space usage of all files contained in all
# installed packages whose names begin with 'lib'
$ dglob -0f ^lib | xargs -0 du -c | awk '{sum += $1} END {print sum}'
# Fetch most recent version of package
$ debget <package>
# Fetch a specific version of package
$ debget <package>=<version>