├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── array ├── array.awk └── array_test.awk ├── fmt └── print.awk ├── log └── print.awk ├── math ├── abs.awk ├── dim.awk ├── expr.awk ├── is_num.awk ├── math_test.awk ├── pow.awk └── similarity.awk ├── path ├── filepath.awk └── path_test.awk ├── sort ├── heapsort.awk ├── insertion_sort.awk ├── reverse.awk └── sort_test.awk ├── strings ├── capitalize.awk ├── eval.awk ├── leven.awk ├── prefix.awk ├── rindex.awk └── strings_test.awk ├── testing └── testing.awk └── time ├── time.awk └── time_test.awk /.gitignore: -------------------------------------------------------------------------------- 1 | sample 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/README.md -------------------------------------------------------------------------------- /array/array.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/array/array.awk -------------------------------------------------------------------------------- /array/array_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/array/array_test.awk -------------------------------------------------------------------------------- /fmt/print.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/fmt/print.awk -------------------------------------------------------------------------------- /log/print.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/log/print.awk -------------------------------------------------------------------------------- /math/abs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/abs.awk -------------------------------------------------------------------------------- /math/dim.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/dim.awk -------------------------------------------------------------------------------- /math/expr.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/expr.awk -------------------------------------------------------------------------------- /math/is_num.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/is_num.awk -------------------------------------------------------------------------------- /math/math_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/math_test.awk -------------------------------------------------------------------------------- /math/pow.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/pow.awk -------------------------------------------------------------------------------- /math/similarity.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/math/similarity.awk -------------------------------------------------------------------------------- /path/filepath.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/path/filepath.awk -------------------------------------------------------------------------------- /path/path_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/path/path_test.awk -------------------------------------------------------------------------------- /sort/heapsort.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/sort/heapsort.awk -------------------------------------------------------------------------------- /sort/insertion_sort.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/sort/insertion_sort.awk -------------------------------------------------------------------------------- /sort/reverse.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/sort/reverse.awk -------------------------------------------------------------------------------- /sort/sort_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/sort/sort_test.awk -------------------------------------------------------------------------------- /strings/capitalize.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/capitalize.awk -------------------------------------------------------------------------------- /strings/eval.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/eval.awk -------------------------------------------------------------------------------- /strings/leven.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/leven.awk -------------------------------------------------------------------------------- /strings/prefix.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/prefix.awk -------------------------------------------------------------------------------- /strings/rindex.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/rindex.awk -------------------------------------------------------------------------------- /strings/strings_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/strings/strings_test.awk -------------------------------------------------------------------------------- /testing/testing.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/testing/testing.awk -------------------------------------------------------------------------------- /time/time.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/time/time.awk -------------------------------------------------------------------------------- /time/time_test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babarot/manyawk/HEAD/time/time_test.awk --------------------------------------------------------------------------------