From 85caa38c7b45766f044a016b88a410f75cb7469e Mon Sep 17 00:00:00 2001 From: sinner Date: Mon, 19 Jan 2026 06:02:10 -0500 Subject: feat: add command aliases for improved cli usability --- cmd/shortlinks.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cmd/shortlinks.go') diff --git a/cmd/shortlinks.go b/cmd/shortlinks.go index 0621da6..4824b81 100644 --- a/cmd/shortlinks.go +++ b/cmd/shortlinks.go @@ -7,10 +7,11 @@ import ( ) var shortlinksCmd = &cobra.Command{ - Use: "shortlinks", - Short: "Search brute forced short links", - Long: `Search for exposed URLs discovered through brute forcing URL shortener services`, - RunE: runShortlinksSearch, + Use: "shortlinks", + Aliases: []string{"shl"}, + Short: "Search brute forced short links", + Long: `Search for exposed URLs discovered through brute forcing URL shortener services`, + RunE: runShortlinksSearch, } func init() { -- cgit v1.2.3