├── .gitignore ├── LICENSE ├── README.md ├── base32 ├── README.md ├── base32.go └── base32 │ └── base32.go ├── base64 ├── README.md ├── base64.go └── base64 │ └── base64.go ├── basecore ├── basecore.go └── basecore_test.go ├── basename ├── README.md ├── basename.go └── basename │ └── basename.go ├── cat ├── README.md ├── cat.go ├── cat │ └── cat.go └── cat_test.go ├── chgrp ├── README.md ├── chgrp.go ├── chgrp │ └── chgrp.go ├── chgrp_test.go └── test.dat ├── chmod └── chmod.go ├── chown ├── README.md ├── chown.go ├── chown │ └── chown.go ├── chown_test.go └── test.dat ├── coreutils └── coreutils.go ├── cut ├── README.md ├── cut.go ├── cut │ └── cut.go └── cut_test.go ├── dirname ├── README.md ├── dirname.go └── dirname │ └── dirname.go ├── echo ├── README.md ├── echo.go ├── echo │ └── echo.go └── echo_test.go ├── env └── env.go ├── hashcore ├── hashcore.go ├── hashcore_test.go ├── md5sum.sum ├── md5sum2.sum ├── ok.binary.md5.sum └── ok.md5.sum ├── head ├── README.md ├── head.go ├── head │ └── head.go └── head_test.go ├── join ├── README.md ├── join.go └── join │ └── main.go ├── link └── link.go ├── md5sum ├── README.md ├── md5sum.go └── md5sum │ └── md5sum.go ├── mv ├── README.md └── mv.go ├── paste ├── README.md ├── paste.go ├── paste │ └── paste.go └── session_id.log ├── pwd ├── README.md ├── pwd.go └── pwd │ └── pwd.go ├── realpath └── realpath.go ├── rmdir ├── README.md ├── rmdir.go └── rmdir │ └── rmdir.go ├── runtest └── runtest.go ├── seq ├── README.md ├── seq.go ├── seq │ └── seq.go └── seq_test.go ├── sha1sum ├── README.md ├── sha1sum.go └── sha1sum │ └── sha1sum.go ├── sha224sum ├── README.md ├── sha224sum.go └── sha224sum │ └── sha224sum.go ├── sha256sum ├── README.md ├── sha256sum.go └── sha256sum │ └── sha256sum.go ├── sha384sum ├── README.md ├── sha384sum.go └── sha384sum │ └── sha384sum.go ├── sha512sum ├── README.md ├── sha512sum.go └── sha512sum │ └── sha512sum.go ├── shuf ├── README.md ├── shuf.go └── shuf │ └── shuf.go ├── sleep ├── README.md ├── sleep.go └── sleep │ └── sleep.go ├── sort ├── README.md └── sort.go ├── split ├── README.md └── split.go ├── tac ├── README.md ├── tac.go ├── tac │ └── tac.go └── tac_test.go ├── tail ├── README.md ├── tail.go ├── tail │ └── tail.go └── tail_test.go ├── tee ├── README.md ├── tee.go ├── tee │ └── tee.go ├── tee_darwin.go └── tee_linux.go ├── touch ├── README.md ├── hello.txt ├── touch.go ├── touch │ └── touch.go └── touch_test.go ├── tr ├── README.md ├── tr.go ├── tr │ └── tr.go └── tr_test.go ├── true ├── README.md ├── true.go └── true │ └── true.go ├── uname ├── README.md ├── uname.go └── uname │ └── uname.go ├── uniq ├── README.md ├── uniq.go └── uniq │ └── uniq.go ├── unlink ├── unlink.go └── unlink │ └── unlink.go ├── utils ├── args.go ├── parse_size.go ├── parse_size_test.go ├── type.go ├── utils.go └── walk.go ├── wc ├── wc.go └── wc │ └── wc.go ├── whoami ├── README.md ├── whoami.go └── whoami │ └── whomai.go └── yes ├── README.md ├── yes.go └── yes └── yes.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/README.md -------------------------------------------------------------------------------- /base32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base32/README.md -------------------------------------------------------------------------------- /base32/base32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base32/base32.go -------------------------------------------------------------------------------- /base32/base32/base32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base32/base32/base32.go -------------------------------------------------------------------------------- /base64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base64/README.md -------------------------------------------------------------------------------- /base64/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base64/base64.go -------------------------------------------------------------------------------- /base64/base64/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/base64/base64/base64.go -------------------------------------------------------------------------------- /basecore/basecore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/basecore/basecore.go -------------------------------------------------------------------------------- /basecore/basecore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/basecore/basecore_test.go -------------------------------------------------------------------------------- /basename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/basename/README.md -------------------------------------------------------------------------------- /basename/basename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/basename/basename.go -------------------------------------------------------------------------------- /basename/basename/basename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/basename/basename/basename.go -------------------------------------------------------------------------------- /cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cat/README.md -------------------------------------------------------------------------------- /cat/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cat/cat.go -------------------------------------------------------------------------------- /cat/cat/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cat/cat/cat.go -------------------------------------------------------------------------------- /cat/cat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cat/cat_test.go -------------------------------------------------------------------------------- /chgrp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chgrp/README.md -------------------------------------------------------------------------------- /chgrp/chgrp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chgrp/chgrp.go -------------------------------------------------------------------------------- /chgrp/chgrp/chgrp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chgrp/chgrp/chgrp.go -------------------------------------------------------------------------------- /chgrp/chgrp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chgrp/chgrp_test.go -------------------------------------------------------------------------------- /chgrp/test.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chmod/chmod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chmod/chmod.go -------------------------------------------------------------------------------- /chown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chown/README.md -------------------------------------------------------------------------------- /chown/chown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chown/chown.go -------------------------------------------------------------------------------- /chown/chown/chown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chown/chown/chown.go -------------------------------------------------------------------------------- /chown/chown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/chown/chown_test.go -------------------------------------------------------------------------------- /chown/test.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coreutils/coreutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/coreutils/coreutils.go -------------------------------------------------------------------------------- /cut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cut/README.md -------------------------------------------------------------------------------- /cut/cut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cut/cut.go -------------------------------------------------------------------------------- /cut/cut/cut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cut/cut/cut.go -------------------------------------------------------------------------------- /cut/cut_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/cut/cut_test.go -------------------------------------------------------------------------------- /dirname/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/dirname/README.md -------------------------------------------------------------------------------- /dirname/dirname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/dirname/dirname.go -------------------------------------------------------------------------------- /dirname/dirname/dirname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/dirname/dirname/dirname.go -------------------------------------------------------------------------------- /echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/echo/README.md -------------------------------------------------------------------------------- /echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/echo/echo.go -------------------------------------------------------------------------------- /echo/echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/echo/echo/echo.go -------------------------------------------------------------------------------- /echo/echo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/echo/echo_test.go -------------------------------------------------------------------------------- /env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/env/env.go -------------------------------------------------------------------------------- /hashcore/hashcore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/hashcore/hashcore.go -------------------------------------------------------------------------------- /hashcore/hashcore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/hashcore/hashcore_test.go -------------------------------------------------------------------------------- /hashcore/md5sum.sum: -------------------------------------------------------------------------------- 1 | 21c93af41e088f56a009666a90ff82b4 kao 2 | -------------------------------------------------------------------------------- /hashcore/md5sum2.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/hashcore/md5sum2.sum -------------------------------------------------------------------------------- /hashcore/ok.binary.md5.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/hashcore/ok.binary.md5.sum -------------------------------------------------------------------------------- /hashcore/ok.md5.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/hashcore/ok.md5.sum -------------------------------------------------------------------------------- /head/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/head/README.md -------------------------------------------------------------------------------- /head/head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/head/head.go -------------------------------------------------------------------------------- /head/head/head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/head/head/head.go -------------------------------------------------------------------------------- /head/head_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/head/head_test.go -------------------------------------------------------------------------------- /join/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/join/README.md -------------------------------------------------------------------------------- /join/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/join/join.go -------------------------------------------------------------------------------- /join/join/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/join/join/main.go -------------------------------------------------------------------------------- /link/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/link/link.go -------------------------------------------------------------------------------- /md5sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/md5sum/README.md -------------------------------------------------------------------------------- /md5sum/md5sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/md5sum/md5sum.go -------------------------------------------------------------------------------- /md5sum/md5sum/md5sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/md5sum/md5sum/md5sum.go -------------------------------------------------------------------------------- /mv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/mv/README.md -------------------------------------------------------------------------------- /mv/mv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/mv/mv.go -------------------------------------------------------------------------------- /paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/paste/README.md -------------------------------------------------------------------------------- /paste/paste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/paste/paste.go -------------------------------------------------------------------------------- /paste/paste/paste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/paste/paste/paste.go -------------------------------------------------------------------------------- /paste/session_id.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/paste/session_id.log -------------------------------------------------------------------------------- /pwd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/pwd/README.md -------------------------------------------------------------------------------- /pwd/pwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/pwd/pwd.go -------------------------------------------------------------------------------- /pwd/pwd/pwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/pwd/pwd/pwd.go -------------------------------------------------------------------------------- /realpath/realpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/realpath/realpath.go -------------------------------------------------------------------------------- /rmdir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/rmdir/README.md -------------------------------------------------------------------------------- /rmdir/rmdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/rmdir/rmdir.go -------------------------------------------------------------------------------- /rmdir/rmdir/rmdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/rmdir/rmdir/rmdir.go -------------------------------------------------------------------------------- /runtest/runtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/runtest/runtest.go -------------------------------------------------------------------------------- /seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/seq/README.md -------------------------------------------------------------------------------- /seq/seq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/seq/seq.go -------------------------------------------------------------------------------- /seq/seq/seq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/seq/seq/seq.go -------------------------------------------------------------------------------- /seq/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/seq/seq_test.go -------------------------------------------------------------------------------- /sha1sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha1sum/README.md -------------------------------------------------------------------------------- /sha1sum/sha1sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha1sum/sha1sum.go -------------------------------------------------------------------------------- /sha1sum/sha1sum/sha1sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha1sum/sha1sum/sha1sum.go -------------------------------------------------------------------------------- /sha224sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha224sum/README.md -------------------------------------------------------------------------------- /sha224sum/sha224sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha224sum/sha224sum.go -------------------------------------------------------------------------------- /sha224sum/sha224sum/sha224sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha224sum/sha224sum/sha224sum.go -------------------------------------------------------------------------------- /sha256sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha256sum/README.md -------------------------------------------------------------------------------- /sha256sum/sha256sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha256sum/sha256sum.go -------------------------------------------------------------------------------- /sha256sum/sha256sum/sha256sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha256sum/sha256sum/sha256sum.go -------------------------------------------------------------------------------- /sha384sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha384sum/README.md -------------------------------------------------------------------------------- /sha384sum/sha384sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha384sum/sha384sum.go -------------------------------------------------------------------------------- /sha384sum/sha384sum/sha384sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha384sum/sha384sum/sha384sum.go -------------------------------------------------------------------------------- /sha512sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha512sum/README.md -------------------------------------------------------------------------------- /sha512sum/sha512sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha512sum/sha512sum.go -------------------------------------------------------------------------------- /sha512sum/sha512sum/sha512sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sha512sum/sha512sum/sha512sum.go -------------------------------------------------------------------------------- /shuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/shuf/README.md -------------------------------------------------------------------------------- /shuf/shuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/shuf/shuf.go -------------------------------------------------------------------------------- /shuf/shuf/shuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/shuf/shuf/shuf.go -------------------------------------------------------------------------------- /sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sleep/README.md -------------------------------------------------------------------------------- /sleep/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sleep/sleep.go -------------------------------------------------------------------------------- /sleep/sleep/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sleep/sleep/sleep.go -------------------------------------------------------------------------------- /sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sort/README.md -------------------------------------------------------------------------------- /sort/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/sort/sort.go -------------------------------------------------------------------------------- /split/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/split/README.md -------------------------------------------------------------------------------- /split/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/split/split.go -------------------------------------------------------------------------------- /tac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tac/README.md -------------------------------------------------------------------------------- /tac/tac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tac/tac.go -------------------------------------------------------------------------------- /tac/tac/tac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tac/tac/tac.go -------------------------------------------------------------------------------- /tac/tac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tac/tac_test.go -------------------------------------------------------------------------------- /tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tail/README.md -------------------------------------------------------------------------------- /tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tail/tail.go -------------------------------------------------------------------------------- /tail/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tail/tail/tail.go -------------------------------------------------------------------------------- /tail/tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tail/tail_test.go -------------------------------------------------------------------------------- /tee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tee/README.md -------------------------------------------------------------------------------- /tee/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tee/tee.go -------------------------------------------------------------------------------- /tee/tee/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tee/tee/tee.go -------------------------------------------------------------------------------- /tee/tee_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tee/tee_darwin.go -------------------------------------------------------------------------------- /tee/tee_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tee/tee_linux.go -------------------------------------------------------------------------------- /touch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/touch/README.md -------------------------------------------------------------------------------- /touch/hello.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /touch/touch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/touch/touch.go -------------------------------------------------------------------------------- /touch/touch/touch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/touch/touch/touch.go -------------------------------------------------------------------------------- /touch/touch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/touch/touch_test.go -------------------------------------------------------------------------------- /tr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tr/README.md -------------------------------------------------------------------------------- /tr/tr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tr/tr.go -------------------------------------------------------------------------------- /tr/tr/tr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tr/tr/tr.go -------------------------------------------------------------------------------- /tr/tr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/tr/tr_test.go -------------------------------------------------------------------------------- /true/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/true/README.md -------------------------------------------------------------------------------- /true/true.go: -------------------------------------------------------------------------------- 1 | package true 2 | 3 | func Main(argv []string) { 4 | } 5 | -------------------------------------------------------------------------------- /true/true/true.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/true/true/true.go -------------------------------------------------------------------------------- /uname/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uname/README.md -------------------------------------------------------------------------------- /uname/uname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uname/uname.go -------------------------------------------------------------------------------- /uname/uname/uname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uname/uname/uname.go -------------------------------------------------------------------------------- /uniq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uniq/README.md -------------------------------------------------------------------------------- /uniq/uniq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uniq/uniq.go -------------------------------------------------------------------------------- /uniq/uniq/uniq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/uniq/uniq/uniq.go -------------------------------------------------------------------------------- /unlink/unlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/unlink/unlink.go -------------------------------------------------------------------------------- /unlink/unlink/unlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/unlink/unlink/unlink.go -------------------------------------------------------------------------------- /utils/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/args.go -------------------------------------------------------------------------------- /utils/parse_size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/parse_size.go -------------------------------------------------------------------------------- /utils/parse_size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/parse_size_test.go -------------------------------------------------------------------------------- /utils/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/type.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/utils/walk.go -------------------------------------------------------------------------------- /wc/wc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/wc/wc.go -------------------------------------------------------------------------------- /wc/wc/wc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/wc/wc/wc.go -------------------------------------------------------------------------------- /whoami/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/whoami/README.md -------------------------------------------------------------------------------- /whoami/whoami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/whoami/whoami.go -------------------------------------------------------------------------------- /whoami/whoami/whomai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/whoami/whoami/whomai.go -------------------------------------------------------------------------------- /yes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/yes/README.md -------------------------------------------------------------------------------- /yes/yes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/yes/yes.go -------------------------------------------------------------------------------- /yes/yes/yes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guonaihong/coreutils/HEAD/yes/yes/yes.go --------------------------------------------------------------------------------