├── .gitignore ├── @all.do ├── @build.do ├── @clean.do ├── @install.do ├── AUTHORS ├── LICENSE ├── LINKS ├── NOTES ├── README.md ├── REDO_DIR.md ├── TODO ├── all ├── clean ├── common.go ├── config.go ├── db.go ├── db_test.go ├── dependent.go ├── doc.go ├── doc ├── default.1.do ├── default.html.do ├── default.md.do ├── ifchange.md ├── ifchange.txt ├── ifcreate.md ├── ifcreate.txt ├── init.md ├── init.txt ├── redo-ifchange.1 ├── redo-ifchange.html ├── redo-ifcreate.1 ├── redo-ifcreate.html ├── redo-init.1 ├── redo-init.html ├── redo.1 ├── redo.html ├── redo.md └── redo.txt ├── dofile.go ├── doinfo.go ├── encoding.go ├── error.go ├── event.go ├── examples └── hello-world-0 │ ├── @clean.do │ ├── @hello.do │ ├── README.md │ ├── README.txt │ ├── default.html.do │ ├── default.md.do │ ├── github.css │ ├── hello.c │ └── hello.do ├── file.go ├── filedb.go ├── init.go ├── install ├── metadata.go ├── mustrebuild.go ├── nulldb.go ├── op.go ├── options.go ├── output.go ├── prerequisite.go ├── redo_test.go ├── redux ├── ifx.go ├── init.go ├── install-man-test.sh ├── install.go ├── main.go └── redo.go ├── relpath.go ├── stat.go ├── stat_windows.go ├── test.sh ├── tree_test.go ├── utils.go └── z_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/.gitignore -------------------------------------------------------------------------------- /@all.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/@all.do -------------------------------------------------------------------------------- /@build.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/@build.do -------------------------------------------------------------------------------- /@clean.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/@clean.do -------------------------------------------------------------------------------- /@install.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/@install.do -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/LICENSE -------------------------------------------------------------------------------- /LINKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/LINKS -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/README.md -------------------------------------------------------------------------------- /REDO_DIR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/REDO_DIR.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/TODO -------------------------------------------------------------------------------- /all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/all -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/clean -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/common.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/config.go -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/db.go -------------------------------------------------------------------------------- /db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/db_test.go -------------------------------------------------------------------------------- /dependent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/dependent.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc.go -------------------------------------------------------------------------------- /doc/default.1.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/default.1.do -------------------------------------------------------------------------------- /doc/default.html.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/default.html.do -------------------------------------------------------------------------------- /doc/default.md.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/default.md.do -------------------------------------------------------------------------------- /doc/ifchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/ifchange.md -------------------------------------------------------------------------------- /doc/ifchange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/ifchange.txt -------------------------------------------------------------------------------- /doc/ifcreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/ifcreate.md -------------------------------------------------------------------------------- /doc/ifcreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/ifcreate.txt -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/init.txt -------------------------------------------------------------------------------- /doc/redo-ifchange.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-ifchange.1 -------------------------------------------------------------------------------- /doc/redo-ifchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-ifchange.html -------------------------------------------------------------------------------- /doc/redo-ifcreate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-ifcreate.1 -------------------------------------------------------------------------------- /doc/redo-ifcreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-ifcreate.html -------------------------------------------------------------------------------- /doc/redo-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-init.1 -------------------------------------------------------------------------------- /doc/redo-init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo-init.html -------------------------------------------------------------------------------- /doc/redo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo.1 -------------------------------------------------------------------------------- /doc/redo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo.html -------------------------------------------------------------------------------- /doc/redo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo.md -------------------------------------------------------------------------------- /doc/redo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doc/redo.txt -------------------------------------------------------------------------------- /dofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/dofile.go -------------------------------------------------------------------------------- /doinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/doinfo.go -------------------------------------------------------------------------------- /encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/encoding.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/error.go -------------------------------------------------------------------------------- /event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/event.go -------------------------------------------------------------------------------- /examples/hello-world-0/@clean.do: -------------------------------------------------------------------------------- 1 | rm -f hello *~ -------------------------------------------------------------------------------- /examples/hello-world-0/@hello.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/@hello.do -------------------------------------------------------------------------------- /examples/hello-world-0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/README.md -------------------------------------------------------------------------------- /examples/hello-world-0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/README.txt -------------------------------------------------------------------------------- /examples/hello-world-0/default.html.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/default.html.do -------------------------------------------------------------------------------- /examples/hello-world-0/default.md.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/default.md.do -------------------------------------------------------------------------------- /examples/hello-world-0/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/github.css -------------------------------------------------------------------------------- /examples/hello-world-0/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/hello.c -------------------------------------------------------------------------------- /examples/hello-world-0/hello.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/examples/hello-world-0/hello.do -------------------------------------------------------------------------------- /file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/file.go -------------------------------------------------------------------------------- /filedb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/filedb.go -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/init.go -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/install -------------------------------------------------------------------------------- /metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/metadata.go -------------------------------------------------------------------------------- /mustrebuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/mustrebuild.go -------------------------------------------------------------------------------- /nulldb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/nulldb.go -------------------------------------------------------------------------------- /op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/op.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/options.go -------------------------------------------------------------------------------- /output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/output.go -------------------------------------------------------------------------------- /prerequisite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/prerequisite.go -------------------------------------------------------------------------------- /redo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redo_test.go -------------------------------------------------------------------------------- /redux/ifx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/ifx.go -------------------------------------------------------------------------------- /redux/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/init.go -------------------------------------------------------------------------------- /redux/install-man-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/install-man-test.sh -------------------------------------------------------------------------------- /redux/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/install.go -------------------------------------------------------------------------------- /redux/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/main.go -------------------------------------------------------------------------------- /redux/redo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/redux/redo.go -------------------------------------------------------------------------------- /relpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/relpath.go -------------------------------------------------------------------------------- /stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/stat.go -------------------------------------------------------------------------------- /stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/stat_windows.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/test.sh -------------------------------------------------------------------------------- /tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/tree_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/utils.go -------------------------------------------------------------------------------- /z_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyepisam/redux/HEAD/z_test.go --------------------------------------------------------------------------------