]> arthur.barton.de Git - netatalk.git/blob - bin/cnid/ad.c
call readt with ONE_DELAY = 5 s
[netatalk.git] / bin / cnid / ad.c
1 /* 
2    $Id: ad.c,v 1.2 2009-10-13 22:55:36 didg Exp $
3
4    Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10  
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15 */
16
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif /* HAVE_CONFIG_H */
20
21 #include <unistd.h>
22 #include <sys/types.h>
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <stdarg.h>
26 #include <limits.h>
27 #include <signal.h>
28 #include <string.h>
29 #include <errno.h>
30
31 #include <atalk/cnid.h>
32 #include <atalk/volinfo.h>
33 #include "ad.h"
34
35 static void usage_main(void)
36 {
37 /*
38     printf("Usage: ad ls|rm|cp|mv|set [file|dir, ...]\n");
39 */
40     printf("Usage: ad ls [file|dir, ...]\n");
41 }
42
43 int main(int argc, char **argv)
44 {
45     if (argc < 2) {
46         usage_main();
47         return 1;
48     }
49
50     if (STRCMP(argv[1], ==, "ls"))
51         return ad_ls(argc - 1, argv + 1);
52     else if (STRCMP(argv[1], ==, "cp"))
53         return ad_cp(argc - 1, argv + 1);
54     else {
55         usage_main();
56         return 1;
57     }
58
59     return 0;
60 }