1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Author: Alexander Wirt <formorer@debian.org>
Description: Add moo feature
critical value-add business feature for Debian
Forwarded: not-needed
--- a/ip/ip.c
+++ b/ip/ip.c
@@ -87,6 +87,19 @@
return 0;
}
+static int do_moo(int argc, char **argv)
+{
+ fprintf(stderr,
+"\n"
+" _ __ ___ ___ ___\n"
+"| '_ ` _ \\ / _ \\ / _ \\\n"
+"| | | | | | (_) | (_) |\n"
+"|_| |_| |_|\\___/ \\___/\n"
+"\n\n"
+"P.S. no real cows were harmed for this moo\n");
+ exit(1);
+}
+
static const struct cmd {
const char *cmd;
int (*func)(int argc, char **argv);
@@ -125,6 +138,7 @@
{ "ioam", do_ioam6 },
{ "help", do_help },
{ "stats", do_ipstats },
+ { "moo", do_moo },
{ 0 }
};
|