You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ See the usage below or the following examples.
41
41
```shell
42
42
gocat is a super simple utility to concatenate files (local, remote, or on AWS S3) provided as positional arguments.
43
43
Supports stdin (aka "-"), local files (path/to/file or file://path/to/file), remote files (http://path/to/file), or files on AWS S3 (s3://path/to/file).
44
-
Supports the following compression algorithms: bzip2, flate, gzip, none, snappy, zip, zlib
44
+
Supports the following compression algorithms: bzip2, flate, gzip, none, snappy, zip, zlib.
45
45
46
46
Usage:
47
47
gocat [flags] [-|stdin|FILE|URI]...
@@ -92,7 +92,7 @@ The `make build_cli` script is used to build executables for Linux and Windows.
92
92
93
93
**Changing Destination**
94
94
95
-
The default destination for build artifacts is `go-reader-writer/bin`, but you can change the destination with an environment variable. For building on a Chromebook consider saving the artifacts in `/usr/local/go/bin`, e.g., `DEST=/usr/local/go/bin make build_cli`
95
+
The default destination for build artifacts is `gocat/bin`, but you can change the destination with an environment variable. For building on a Chromebook consider saving the artifacts in `/usr/local/go/bin`, e.g., `DEST=/usr/local/go/bin make build_cli`
v.AutomaticEnv() // set environment variables to overwrite config
@@ -76,11 +75,11 @@ func main() {
76
75
Short: "gocat is a super simple utility to concatenate files (local, remote, or on AWS S3) provided as positional arguments.",
77
76
Long: `gocat is a super simple utility to concatenate files (local, remote, or on AWS S3) provided as positional arguments.
78
77
Supports stdin (aka "-"), local files (path/to/file or file://path/to/file), remote files (http://path/to/file), or files on AWS S3 (s3://path/to/file).
79
-
Supports the following compression algorithms: `+strings.Join(grw.Algorithms, ", "),
78
+
Supports the following compression algorithms: `+strings.Join(grw.Algorithms, ", ")+`.`,
0 commit comments