46 | 46 | As with the `dpkg` command, the APT front end is more commonly used. The same repositories which contain binary packages also contain binary source packages. It's possible to get the source package for any binary package with the `apt-get source` command. This command downloads the source package to the current directory and unpacks it for you. Note that a single source package may generate multiple binary packages. For example, if you have the binary package `foo-utils`, which might also come with the package `foo-doc`, the source for both of those would likely be in the `foo` package, so `apt-get source foo-doc` would get you the same source as `apt-get source foo-utils`. However, with APT, you don't have to worry about this -- it will determine what the appropriate source package is, and it will get it for you. |