/* Copyright (c) 2009 Frank Lahm This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "ad.h" static void usage_main(void) { printf("Usage: ad ls|cp|rm|mv|find [file|dir, ...]\n"); } int main(int argc, char **argv) { setuplog("default log_note /dev/tty"); if (argc < 2) { usage_main(); return 1; } if (STRCMP(argv[1], ==, "ls")) return ad_ls(argc - 1, argv + 1); else if (STRCMP(argv[1], ==, "cp")) return ad_cp(argc - 1, argv + 1); else if (STRCMP(argv[1], ==, "rm")) return ad_rm(argc - 1, argv + 1); else if (STRCMP(argv[1], ==, "mv")) return ad_mv(argc, argv); else if (STRCMP(argv[1], ==, "find")) return ad_find(argc, argv); else { usage_main(); return 1; } return 0; }