diff options
Diffstat (limited to 'cmd/shortlinks.go')
| -rw-r--r-- | cmd/shortlinks.go | 9 |
1 files changed, 5 insertions, 4 deletions
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() { |
