This is an education project that attempts to reimplement the GNU coreutils in Go. You can find the full manual here:
https://www.gnu.org/software/coreutils/manual/coreutils.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
240 B
12 lines
240 B
|
2 months ago
|
module lcthw.dev/go/go-coreutils/cat
|
||
|
|
|
||
|
|
go 1.24.2
|
||
|
|
|
||
|
|
require github.com/stretchr/testify v1.11.1
|
||
|
|
|
||
|
|
require (
|
||
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||
|
|
)
|