+ for (;;) {
+ if (fd.Read(buf, sizeof(buf), &read) == false)
+ return false;
+ if (read == 0)
+ break;
+ if (out.Write(buf, read) == false)
+ return false;
+ }
+ }
+ return true;
+}
+ /*}}}*/
+static bool ShowHelp(CommandLine &) /*{{{*/
+{
+ std::cout <<
+ _("Usage: apt-helper [options] command\n"
+ " apt-helper [options] cat-file file ...\n"
+ " apt-helper [options] download-file uri target-path\n"
+ "\n"
+ "apt-helper bundles a variety of commands for shell scripts to use\n"
+ "e.g. the same proxy configuration or acquire system as APT would.\n");