Codebase list debian-goodies / e2e08dbc-9661-4995-b29c-1cb724c34b2f/main README
e2e08dbc-9661-4995-b29c-1cb724c34b2f/main

Tree @e2e08dbc-9661-4995-b29c-1cb724c34b2f/main (Download .tar.gz)

README @e2e08dbc-9661-4995-b29c-1cb724c34b2f/main

1493a5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>