From bbdba4dad16cb5a77f4e0bc2ffc85d231eab9527 Mon Sep 17 00:00:00 2001 From: Thomas Stilwell Date: Sun, 7 Jun 2020 23:55:59 -0500 Subject: [PATCH] sys/shell/commands: alias ping=ping6 --- sys/shell/commands/shell_commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/shell/commands/shell_commands.c b/sys/shell/commands/shell_commands.c index 9905cd7b9d..a4da347bf0 100644 --- a/sys/shell/commands/shell_commands.c +++ b/sys/shell/commands/shell_commands.c @@ -216,6 +216,7 @@ const shell_command_t _shell_command_list[] = { #ifdef MODULE_GNRC_ICMPV6_ECHO #ifdef MODULE_XTIMER { "ping6", "Ping via ICMPv6", _gnrc_icmpv6_ping }, + { "ping", "Ping via ICMPv6", _gnrc_icmpv6_ping }, #endif #endif #ifdef MODULE_RANDOM