diff options
Diffstat (limited to 'cmd/buckets.go')
| -rw-r--r-- | cmd/buckets.go | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/cmd/buckets.go b/cmd/buckets.go index fcb292d..74e0e3b 100644 --- a/cmd/buckets.go +++ b/cmd/buckets.go @@ -7,17 +7,19 @@ import ( ) var bucketsCmd = &cobra.Command{ - Use: "buckets", - Short: "List public buckets", - Long: `List public S3, Azure, GCP, and DigitalOcean buckets with file counts`, - RunE: runBucketsSearch, + Use: "buckets", + Aliases: []string{"b"}, + Short: "List public buckets", + Long: `List public S3, Azure, GCP, and DigitalOcean buckets with file counts`, + RunE: runBucketsSearch, } var bucketFilesCmd = &cobra.Command{ - Use: "bucket-files", - Short: "Search public bucket files", - Long: `Search public S3, Azure, GCP, and DigitalOcean buckets for exposed files`, - RunE: runBucketFilesSearch, + Use: "bucket-files", + Aliases: []string{"bf"}, + Short: "Search public bucket files", + Long: `Search public S3, Azure, GCP, and DigitalOcean buckets for exposed files`, + RunE: runBucketFilesSearch, } func init() { |
