From 6d43a5353bef60b3d4199ef33671659bda96cc27 Mon Sep 17 00:00:00 2001 From: disconnect3d Date: Thu, 3 Aug 2023 19:38:22 +0000 Subject: [PATCH] tips command: add -a alias for --all --- pwndbg/commands/tips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/commands/tips.py b/pwndbg/commands/tips.py index 4baed486e..9896a9008 100644 --- a/pwndbg/commands/tips.py +++ b/pwndbg/commands/tips.py @@ -8,7 +8,7 @@ from pwndbg.lib.tips import color_tip from pwndbg.lib.tips import get_tip_of_the_day parser = argparse.ArgumentParser(description="Shows tips.") -parser.add_argument("--all", action="store_true", help="Show all tips.") +parser.add_argument("-a", "--all", action="store_true", help="Show all tips.") @pwndbg.commands.ArgparsedCommand(parser)