From da283046cb1f21da5fa188ea469276113fd968ab Mon Sep 17 00:00:00 2001 From: dimidd Date: Wed, 30 Mar 2016 14:44:54 +0300 Subject: [PATCH] options: add short flag for binary-skip --- options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.go b/options.go index d9e20bf7..72644e02 100644 --- a/options.go +++ b/options.go @@ -34,7 +34,7 @@ import ( ) type Options struct { - BinarySkip bool `long:"binary-skip" description:"skip files that seem to be binary"` + BinarySkip bool `short:"b" long:"binary-skip" description:"skip files that seem to be binary"` BinaryAsText bool `short:"a" long:"binary-text" description:"process files that seem to be binary as text"` Blocksize string `long:"blocksize" description:"blocksize in bytes (with optional suffix K|M)"` Color string