man > dcmd(1)

📘 NAME

dcmd - expand file lists of .dsc/.changes files in the command line

🚀 Quick Reference

Use Case Command Description
📄 List all files from a .dsc or .changes file dcmd file.dsc or dcmd file.changes Prints the expanded list of filenames, one per line, to stdout.
📦 Copy all build artifacts to a remote host dcmd scp file.changes host:path Expands the file list and passes it to scp for copying.
🔍 Filter specific file types (e.g., .deb and .diff) dcmd --diff --deb scp file.changes host:path Only copies the selected file types to the remote host.
🔐 Verify checksums of all source package files dcmd md5sum file.dsc Runs md5sum on the expanded list of files (excluding .dsc itself).
🔁 Exclude a file type from checksum verification dcmd --no-diff md5sum file.dsc Excludes .diff.gz from the md5sum check.

📋 SYNOPSIS

dcmd [options] [command] [changes-file|dsc-file] ...

📖 DESCRIPTION

dcmd replaces any reference to a .dsc or .changes file in the command line with the list of files in its 'Files' section, plus the file itself. It allows easy manipulation of all the files involved in an upload (for .changes files) or a source package (for .dsc files).

If command is omitted (that is the first argument is an existing .dsc or .changes file), the expanded list of files is printed to stdout, one file by line. Useful for usage in backticks.

⚙️ OPTIONS

There are a number of options which may be used in order to select only a subset of the files listed in the .dsc or .changes file. If a requested file is not found, an error message will be printed.

Each option may be prefixed by --no to indicate that all files not matching the specification should be selected.

It is not possible to combine positive filtering options (e.g. --dsc) and negative filtering options (e.g. --no-changes) in the same dcmd invocation.

💡 EXAMPLES

💻 Copy the result of a build to another machine:

$ dcmd scp rcs_5.7-23_amd64.changes elegiac:/tmp
rcs_5.7-23.dsc                  100%  490     0.5KB/s   00:00
rcs_5.7-23.diff.gz              100%   12KB  11.7KB/s   00:00
rcs_5.7-23_amd64.deb            100%  363KB 362.7KB/s   00:00
rcs_5.7-23_amd64.changes        100% 1095     1.1KB/s   00:00
$
$ dcmd --diff --deb scp rcs_5.7-23_amd64.changes elegiac:/tmp
rcs_5.7-23.diff.gz              100%   12KB  11.7KB/s   00:00
rcs_5.7-23_amd64.deb            100%  363KB 362.7KB/s   00:00
$

🔐 Check the contents of a source package:

$ dcmd md5sum rcs_5.7-23.dsc
8fd09ea9654cda128f8d5c337d3b8de7  rcs_5.7.orig.tar.gz
f0ceeae96603e823eacba6721a30b5c7  rcs_5.7-23.diff.gz
5241db1e231b1f43ae5514b63d2523f8  rcs_5.7-23.dsc
$
$ dcmd --no-diff md5sum rcs_5.7-23.dsc
8fd09ea9654cda128f8d5c337d3b8de7  rcs_5.7.orig.tar.gz
5241db1e231b1f43ae5514b63d2523f8  rcs_5.7-23.dsc
$

📚 SEE ALSO

👤 AUTHOR

This program was written by Romain Francoise <rfrancoise AT debian.org> and is released under the GPL, version 2 or later.

dcmd(1)
📘 NAME 🚀 Quick Reference 📋 SYNOPSIS 📖 DESCRIPTION ⚙️ OPTIONS 💡 EXAMPLES 📚 SEE ALSO 👤 AUTHOR

Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-30 19:20 @216.73.217.135
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^