-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from rsteube/add-gzip
added gzip / gunzip
- Loading branch information
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package cmd | ||
|
||
import ( | ||
"github.com/rsteube/carapace" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var rootCmd = &cobra.Command{ | ||
Use: "gunzip", | ||
Short: "Uncompress files", | ||
Run: func(cmd *cobra.Command, args []string) {}, | ||
} | ||
|
||
func Execute() error { | ||
return rootCmd.Execute() | ||
} | ||
func init() { | ||
carapace.Gen(rootCmd).Standalone() | ||
|
||
rootCmd.Flags().BoolP("force", "f", false, "force overwrite of output file and compress links") | ||
rootCmd.Flags().Bool("help", false, "display this help and exit") | ||
rootCmd.Flags().BoolP("keep", "k", false, "keep (don't delete) input files") | ||
rootCmd.Flags().BoolP("list", "l", false, "list compressed file contents") | ||
rootCmd.Flags().BoolP("name", "N", false, "save or restore the original name and timestamp") | ||
rootCmd.Flags().BoolP("no-name", "n", false, "do not save or restore the original name and timestamp") | ||
rootCmd.Flags().BoolP("quiet", "q", false, "suppress all warnings") | ||
rootCmd.Flags().BoolP("recursive", "r", false, "operate recursively on directories") | ||
rootCmd.Flags().BoolP("stdout", "c", false, "write on standard output, keep original files unchanged") | ||
rootCmd.Flags().StringP("suffix", "S", "", "use suffix SUF on compressed files") | ||
rootCmd.Flags().BoolP("test", "t", false, "test compressed file integrity") | ||
rootCmd.Flags().BoolP("verbose", "v", false, "verbose mode") | ||
rootCmd.Flags().Bool("version", false, "display version information and exit") | ||
|
||
carapace.Gen(rootCmd).PositionalAnyCompletion(carapace.ActionFiles("")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package main | ||
|
||
import "github.com/rsteube/carapace-bin/completers/gunzip_completer/cmd" | ||
|
||
func main() { | ||
cmd.Execute() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package cmd | ||
|
||
import ( | ||
"github.com/rsteube/carapace" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var rootCmd = &cobra.Command{ | ||
Use: "gzip", | ||
Short: "Compress or uncompress files", | ||
Run: func(cmd *cobra.Command, args []string) {}, | ||
} | ||
|
||
func Execute() error { | ||
return rootCmd.Execute() | ||
} | ||
func init() { | ||
carapace.Gen(rootCmd).Standalone() | ||
|
||
rootCmd.Flags().BoolP("best", "9", false, "compress better") | ||
rootCmd.Flags().BoolP("decompress", "d", false, "decompress") | ||
rootCmd.Flags().BoolP("fast", "1", false, "compress faster") | ||
rootCmd.Flags().BoolP("force", "f", false, "force overwrite of output file and compress links") | ||
rootCmd.Flags().BoolP("help", "h", false, "give this help") | ||
rootCmd.Flags().BoolP("keep", "k", false, "keep (don't delete) input files") | ||
rootCmd.Flags().BoolP("license", "L", false, "display software license") | ||
rootCmd.Flags().BoolP("list", "l", false, "list compressed file contents") | ||
rootCmd.Flags().BoolP("name", "N", false, "save or restore the original name and timestamp") | ||
rootCmd.Flags().BoolP("no-name", "n", false, "do not save or restore the original name and timestamp") | ||
rootCmd.Flags().BoolP("quiet", "q", false, "suppress all warnings") | ||
rootCmd.Flags().BoolP("recursive", "r", false, "operate recursively on directories") | ||
rootCmd.Flags().Bool("rsyncable", false, "make rsync-friendly archive") | ||
rootCmd.Flags().BoolP("stdout", "c", false, "write on standard output, keep original files unchanged") | ||
rootCmd.Flags().StringP("suffix", "S", "", "use suffix SUF on compressed files") | ||
rootCmd.Flags().BoolP("test", "t", false, "test compressed file integrity") | ||
rootCmd.Flags().BoolP("verbose", "v", false, "verbose mode") | ||
rootCmd.Flags().BoolP("version", "V", false, "display version number") | ||
|
||
carapace.Gen(rootCmd).PositionalAnyCompletion(carapace.ActionFiles("")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package main | ||
|
||
import "github.com/rsteube/carapace-bin/completers/gzip_completer/cmd" | ||
|
||
func main() { | ||
cmd.Execute() | ||
} |