1#include "cache.h"2#include "rev-cache.h"34static char *show_rev_cache_usage =5"git-show-rev-cache <rev-cache-file>";67int main(int ac, char **av)8{9while (1 < ac && av[0][1] == '-') {10/* do flags here */11break;12ac--; av++;13}14if (ac != 2)15usage(show_rev_cache_usage);1617return read_rev_cache(av[1], stdout, 1);18}