From a497ca472a72db4cbe7d8d1831d7b71fe2480778 Mon Sep 17 00:00:00 2001 From: Richard Nyberg Date: Sat, 7 Oct 2006 13:16:27 +0000 Subject: Help text changes and make del and start take the --help option. --- cli/del.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'cli/del.c') diff --git a/cli/del.c b/cli/del.c index 91e53b6..dbbf3c6 100644 --- a/cli/del.c +++ b/cli/del.c @@ -9,22 +9,33 @@ usage_del(void) "Usage: del torrent ...\n" "\n" "Arguments:\n" - "file ...\n" + "torrent ...\n" "\tThe torrents to remove.\n" "\n"); exit(1); } +static struct option del_opts [] = { + { "help", no_argument, NULL, 'H' }, + {NULL, 0, NULL, 0} +}; + void cmd_del(int argc, char **argv) { + int ch; struct ipc_torrent t; - if (argc < 2) + while ((ch = getopt_long(argc, argv, "", del_opts, NULL)) != -1) + usage_del(); + argc -= optind; + argv += optind; + + if (argc < 1) usage_del(); btpd_connect(); - for (int i = 1; i < argc; i++) + for (int i = 0; i < argc; i++) if (torrent_spec(argv[i], &t)) handle_ipc_res(btpd_del(ipc, &t), "del", argv[i]); } -- cgit 1.4.1