├── .gitignore ├── .travis.yml ├── CONTRIBUTORS ├── LICENSE.md ├── Makefile ├── README.md ├── TODO ├── docs ├── .buildinfo ├── .nojekyll ├── _sources │ ├── block.txt │ ├── command.txt │ ├── connection.txt │ ├── error.txt │ ├── index.txt │ ├── introduction.txt │ ├── job.txt │ ├── shebang_comment.txt │ └── variables.txt ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-1.11.1.js │ ├── jquery.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── block.html ├── command.html ├── connection.html ├── error.html ├── genindex.html ├── index.html ├── introduction.html ├── job.html ├── objects.inv ├── search.html ├── searchindex.js ├── shebang_comment.html └── variables.html ├── examples ├── SHELL_GEI_2015SP │ ├── Q1.mac.glue │ ├── Q2.mac.glue │ ├── Q3.mac.glue │ ├── Q3.mac_2.glue │ ├── Q4.mac.glue │ └── README ├── and.glue ├── and2.glue ├── and2_error.glue ├── args1.glue ├── args2.glue ├── command.glue ├── command2.glue ├── command2_ng.glue ├── command_error.glue ├── command_no_quote.glue ├── comment.glue ├── do_block.glue ├── do_block_pipe.glue ├── do_block_pipe2.glue ├── do_block_plus.glue ├── do_block_scope.glue ├── do_block_scope2.glue ├── do_block_scope3.glue ├── do_if_then.glue ├── error_nest.glue ├── file1.glue ├── file2.glue ├── fizzbuzz.glue ├── foreach2.glue ├── foreach_simple.glue ├── if_then_else.glue ├── if_then_else2.glue ├── import.glue ├── import2.glue ├── import_path.glue ├── jobs.glue ├── jobs2.glue ├── loop_eachline.glue ├── loop_stop.glue ├── or.glue ├── or2.glue ├── or3.glue ├── or_bug.glue ├── path.glue ├── path_agg.glue ├── pipeline.glue ├── pipeline2.glue ├── pipeline2_fold.glue ├── pipeline_return.glue ├── proc1.glue ├── proc2.glue ├── proc_args.glue ├── readme.glue ├── shebang.glue ├── simple_error.glue ├── simple_while.glue ├── simple_while_error.glue ├── str1.glue ├── string_condition.glue ├── then_stop.glue ├── where.glue ├── where2.glue ├── where2_error.glue ├── where_args.glue ├── where_scope.glue ├── where_scope2.glue ├── where_scope3.glue ├── while_do.glue └── while_do_error.glue ├── manual_src ├── .gitignore ├── Makefile ├── _build │ └── doctrees │ │ ├── arguments.doctree │ │ ├── block.doctree │ │ ├── command.doctree │ │ ├── connection.doctree │ │ ├── environment.pickle │ │ ├── error.doctree │ │ ├── index.doctree │ │ ├── introduction.doctree │ │ ├── job.doctree │ │ ├── shebang_comment.doctree │ │ └── variables.doctree ├── block.rst ├── command.rst ├── conf.py ├── connection.rst ├── error.rst ├── index.rst ├── introduction.rst ├── job.rst ├── shebang_comment.rst └── variables.rst ├── misc └── 20150227_osc_memo ├── src ├── Arg.cc ├── Arg.h ├── ArgExtCom.cc ├── ArgExtCom.h ├── ArgIntCom.cc ├── ArgIntCom.h ├── ArgProc.cc ├── ArgProc.h ├── ArgVariable.cc ├── ArgVariable.h ├── ArrayVariable.cc ├── ArrayVariable.h ├── Data.cc ├── Data.h ├── DataFile.cc ├── DataFile.h ├── DataJob.cc ├── DataJob.h ├── DataProc.cc ├── DataProc.h ├── DataStr.cc ├── DataStr.h ├── DefFile.cc ├── DefFile.h ├── DefProc.cc ├── DefProc.h ├── DefStr.cc ├── DefStr.h ├── Element.cc ├── Element.h ├── Environment.cc ├── Environment.h ├── ExecExtCom.cc ├── ExecExtCom.h ├── ExecForEach.cc ├── ExecForEach.h ├── ExecIntCom.cc ├── ExecIntCom.h ├── ExecProc.cc ├── ExecProc.h ├── ExecSubShell.cc ├── ExecSubShell.h ├── ExecWhile.cc ├── ExecWhile.h ├── Executable.cc ├── Executable.h ├── Feeder.cc ├── Feeder.h ├── Import.cc ├── Import.h ├── InternalCommands.cc ├── InternalCommands.h ├── Job.cc ├── Job.h ├── Literal.cc ├── Literal.h ├── Makefile ├── Pipeline.cc ├── Pipeline.h ├── Script.cc ├── Script.h ├── Where.cc ├── Where.h ├── hoge.glue ├── main.cc ├── memo_exit_line └── obsolete │ ├── DefCond.cc │ ├── DefCond.h │ ├── ExeEachline.cc │ ├── ExeEachline.h │ ├── ExecString.cc │ └── ExecString.h └── test ├── README ├── argv.test ├── background_proc.test ├── blank.test ├── comment.test ├── exit_status.test ├── file.test ├── foreach.test ├── hoge.glue ├── hoge.test ├── if.test ├── import.test ├── internal_commands.test ├── job.test ├── obsolete ├── eachline.test ├── repeat.test └── while.test ├── pipeline.test ├── proc.test ├── signal.test ├── simple_command.test ├── test_all.sh ├── v_opt.test ├── variable.test ├── varstring.test ├── where.test └── while.test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/TODO -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/block.txt -------------------------------------------------------------------------------- /docs/_sources/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/command.txt -------------------------------------------------------------------------------- /docs/_sources/connection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/connection.txt -------------------------------------------------------------------------------- /docs/_sources/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/error.txt -------------------------------------------------------------------------------- /docs/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/index.txt -------------------------------------------------------------------------------- /docs/_sources/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/introduction.txt -------------------------------------------------------------------------------- /docs/_sources/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/job.txt -------------------------------------------------------------------------------- /docs/_sources/shebang_comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/shebang_comment.txt -------------------------------------------------------------------------------- /docs/_sources/variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_sources/variables.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/block.html -------------------------------------------------------------------------------- /docs/command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/command.html -------------------------------------------------------------------------------- /docs/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/connection.html -------------------------------------------------------------------------------- /docs/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/error.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/introduction.html -------------------------------------------------------------------------------- /docs/job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/job.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/shebang_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/shebang_comment.html -------------------------------------------------------------------------------- /docs/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/docs/variables.html -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/Q1.mac.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/SHELL_GEI_2015SP/Q1.mac.glue -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/Q2.mac.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/SHELL_GEI_2015SP/Q2.mac.glue -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/Q3.mac.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/SHELL_GEI_2015SP/Q3.mac.glue -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/Q3.mac_2.glue: -------------------------------------------------------------------------------- 1 | /usr/local/bin/clisp '-x' '(! 2015)' '-q' 2 | -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/Q4.mac.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/SHELL_GEI_2015SP/Q4.mac.glue -------------------------------------------------------------------------------- /examples/SHELL_GEI_2015SP/README: -------------------------------------------------------------------------------- 1 | glue scripts that solve the problems in 2 | http://blog.ueda.asia/?p=4821 3 | -------------------------------------------------------------------------------- /examples/and.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/and.glue -------------------------------------------------------------------------------- /examples/and2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/and2.glue -------------------------------------------------------------------------------- /examples/and2_error.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/and2_error.glue -------------------------------------------------------------------------------- /examples/args1.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/args1.glue -------------------------------------------------------------------------------- /examples/args2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/args2.glue -------------------------------------------------------------------------------- /examples/command.glue: -------------------------------------------------------------------------------- 1 | /bin/echo 'abc' 2 | -------------------------------------------------------------------------------- /examples/command2.glue: -------------------------------------------------------------------------------- 1 | /bin/cat '/etc/resolv.conf' 2 | -------------------------------------------------------------------------------- /examples/command2_ng.glue: -------------------------------------------------------------------------------- 1 | cat '/etc/resolv.conf' 2 | -------------------------------------------------------------------------------- /examples/command_error.glue: -------------------------------------------------------------------------------- 1 | /bin/echo abc 2 | -------------------------------------------------------------------------------- /examples/command_no_quote.glue: -------------------------------------------------------------------------------- 1 | /bin/echo -n 10 2 | -------------------------------------------------------------------------------- /examples/comment.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/comment.glue -------------------------------------------------------------------------------- /examples/do_block.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block.glue -------------------------------------------------------------------------------- /examples/do_block_pipe.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block_pipe.glue -------------------------------------------------------------------------------- /examples/do_block_pipe2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block_pipe2.glue -------------------------------------------------------------------------------- /examples/do_block_plus.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block_plus.glue -------------------------------------------------------------------------------- /examples/do_block_scope.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block_scope.glue -------------------------------------------------------------------------------- /examples/do_block_scope2.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | str s = 'アイウエオ' 4 | 5 | do 6 | echo s 7 | -------------------------------------------------------------------------------- /examples/do_block_scope3.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_block_scope3.glue -------------------------------------------------------------------------------- /examples/do_if_then.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/do_if_then.glue -------------------------------------------------------------------------------- /examples/error_nest.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | proc f = diff 4 | 5 | this.f 6 | -------------------------------------------------------------------------------- /examples/file1.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/file1.glue -------------------------------------------------------------------------------- /examples/file2.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | file f = seq 3 4 | mv f './a' 5 | 6 | -------------------------------------------------------------------------------- /examples/fizzbuzz.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/fizzbuzz.glue -------------------------------------------------------------------------------- /examples/foreach2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/foreach2.glue -------------------------------------------------------------------------------- /examples/foreach_simple.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | seq 1 3 >>= foreach 4 | echo '@' argv[1] 5 | -------------------------------------------------------------------------------- /examples/if_then_else.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/if_then_else.glue -------------------------------------------------------------------------------- /examples/if_then_else2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/if_then_else2.glue -------------------------------------------------------------------------------- /examples/import.glue: -------------------------------------------------------------------------------- 1 | import /bin/ as b 2 | b.ls 3 | -------------------------------------------------------------------------------- /examples/import2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/import2.glue -------------------------------------------------------------------------------- /examples/import_path.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | ls -l 4 | -------------------------------------------------------------------------------- /examples/jobs.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/jobs.glue -------------------------------------------------------------------------------- /examples/jobs2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/jobs2.glue -------------------------------------------------------------------------------- /examples/loop_eachline.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/loop_eachline.glue -------------------------------------------------------------------------------- /examples/loop_stop.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/loop_stop.glue -------------------------------------------------------------------------------- /examples/or.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/or.glue -------------------------------------------------------------------------------- /examples/or2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/or2.glue -------------------------------------------------------------------------------- /examples/or3.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/or3.glue -------------------------------------------------------------------------------- /examples/or_bug.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/or_bug.glue -------------------------------------------------------------------------------- /examples/path.glue: -------------------------------------------------------------------------------- 1 | import /usr/bin/ as ub 2 | ub.seq '1' '5' 3 | -------------------------------------------------------------------------------- /examples/path_agg.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/path_agg.glue -------------------------------------------------------------------------------- /examples/pipeline.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/pipeline.glue -------------------------------------------------------------------------------- /examples/pipeline2.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | echo 'abc' >>= rev 3 | -------------------------------------------------------------------------------- /examples/pipeline2_fold.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/pipeline2_fold.glue -------------------------------------------------------------------------------- /examples/pipeline_return.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/pipeline_return.glue -------------------------------------------------------------------------------- /examples/proc1.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/proc1.glue -------------------------------------------------------------------------------- /examples/proc2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/proc2.glue -------------------------------------------------------------------------------- /examples/proc_args.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/proc_args.glue -------------------------------------------------------------------------------- /examples/readme.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/readme.glue -------------------------------------------------------------------------------- /examples/shebang.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/shebang.glue -------------------------------------------------------------------------------- /examples/simple_error.glue: -------------------------------------------------------------------------------- 1 | import PATH 2 | 3 | diff 4 | -------------------------------------------------------------------------------- /examples/simple_while.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/simple_while.glue -------------------------------------------------------------------------------- /examples/simple_while_error.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/simple_while_error.glue -------------------------------------------------------------------------------- /examples/str1.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/str1.glue -------------------------------------------------------------------------------- /examples/string_condition.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/string_condition.glue -------------------------------------------------------------------------------- /examples/then_stop.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/then_stop.glue -------------------------------------------------------------------------------- /examples/where.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where.glue -------------------------------------------------------------------------------- /examples/where2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where2.glue -------------------------------------------------------------------------------- /examples/where2_error.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where2_error.glue -------------------------------------------------------------------------------- /examples/where_args.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where_args.glue -------------------------------------------------------------------------------- /examples/where_scope.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where_scope.glue -------------------------------------------------------------------------------- /examples/where_scope2.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where_scope2.glue -------------------------------------------------------------------------------- /examples/where_scope3.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/where_scope3.glue -------------------------------------------------------------------------------- /examples/while_do.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/while_do.glue -------------------------------------------------------------------------------- /examples/while_do_error.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/examples/while_do_error.glue -------------------------------------------------------------------------------- /manual_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/.gitignore -------------------------------------------------------------------------------- /manual_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/Makefile -------------------------------------------------------------------------------- /manual_src/_build/doctrees/arguments.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/arguments.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/block.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/block.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/command.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/command.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/connection.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/connection.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /manual_src/_build/doctrees/error.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/error.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/introduction.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/job.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/job.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/shebang_comment.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/shebang_comment.doctree -------------------------------------------------------------------------------- /manual_src/_build/doctrees/variables.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/_build/doctrees/variables.doctree -------------------------------------------------------------------------------- /manual_src/block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/block.rst -------------------------------------------------------------------------------- /manual_src/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/command.rst -------------------------------------------------------------------------------- /manual_src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/conf.py -------------------------------------------------------------------------------- /manual_src/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/connection.rst -------------------------------------------------------------------------------- /manual_src/error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/error.rst -------------------------------------------------------------------------------- /manual_src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/index.rst -------------------------------------------------------------------------------- /manual_src/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/introduction.rst -------------------------------------------------------------------------------- /manual_src/job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/job.rst -------------------------------------------------------------------------------- /manual_src/shebang_comment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/shebang_comment.rst -------------------------------------------------------------------------------- /manual_src/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/manual_src/variables.rst -------------------------------------------------------------------------------- /misc/20150227_osc_memo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/misc/20150227_osc_memo -------------------------------------------------------------------------------- /src/Arg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Arg.cc -------------------------------------------------------------------------------- /src/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Arg.h -------------------------------------------------------------------------------- /src/ArgExtCom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgExtCom.cc -------------------------------------------------------------------------------- /src/ArgExtCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgExtCom.h -------------------------------------------------------------------------------- /src/ArgIntCom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgIntCom.cc -------------------------------------------------------------------------------- /src/ArgIntCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgIntCom.h -------------------------------------------------------------------------------- /src/ArgProc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgProc.cc -------------------------------------------------------------------------------- /src/ArgProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgProc.h -------------------------------------------------------------------------------- /src/ArgVariable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgVariable.cc -------------------------------------------------------------------------------- /src/ArgVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArgVariable.h -------------------------------------------------------------------------------- /src/ArrayVariable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArrayVariable.cc -------------------------------------------------------------------------------- /src/ArrayVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ArrayVariable.h -------------------------------------------------------------------------------- /src/Data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Data.cc -------------------------------------------------------------------------------- /src/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Data.h -------------------------------------------------------------------------------- /src/DataFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataFile.cc -------------------------------------------------------------------------------- /src/DataFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataFile.h -------------------------------------------------------------------------------- /src/DataJob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataJob.cc -------------------------------------------------------------------------------- /src/DataJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataJob.h -------------------------------------------------------------------------------- /src/DataProc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataProc.cc -------------------------------------------------------------------------------- /src/DataProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataProc.h -------------------------------------------------------------------------------- /src/DataStr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataStr.cc -------------------------------------------------------------------------------- /src/DataStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DataStr.h -------------------------------------------------------------------------------- /src/DefFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefFile.cc -------------------------------------------------------------------------------- /src/DefFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefFile.h -------------------------------------------------------------------------------- /src/DefProc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefProc.cc -------------------------------------------------------------------------------- /src/DefProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefProc.h -------------------------------------------------------------------------------- /src/DefStr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefStr.cc -------------------------------------------------------------------------------- /src/DefStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/DefStr.h -------------------------------------------------------------------------------- /src/Element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Element.cc -------------------------------------------------------------------------------- /src/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Element.h -------------------------------------------------------------------------------- /src/Environment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Environment.cc -------------------------------------------------------------------------------- /src/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Environment.h -------------------------------------------------------------------------------- /src/ExecExtCom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecExtCom.cc -------------------------------------------------------------------------------- /src/ExecExtCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecExtCom.h -------------------------------------------------------------------------------- /src/ExecForEach.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecForEach.cc -------------------------------------------------------------------------------- /src/ExecForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecForEach.h -------------------------------------------------------------------------------- /src/ExecIntCom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecIntCom.cc -------------------------------------------------------------------------------- /src/ExecIntCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecIntCom.h -------------------------------------------------------------------------------- /src/ExecProc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecProc.cc -------------------------------------------------------------------------------- /src/ExecProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecProc.h -------------------------------------------------------------------------------- /src/ExecSubShell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecSubShell.cc -------------------------------------------------------------------------------- /src/ExecSubShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecSubShell.h -------------------------------------------------------------------------------- /src/ExecWhile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecWhile.cc -------------------------------------------------------------------------------- /src/ExecWhile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/ExecWhile.h -------------------------------------------------------------------------------- /src/Executable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Executable.cc -------------------------------------------------------------------------------- /src/Executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Executable.h -------------------------------------------------------------------------------- /src/Feeder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Feeder.cc -------------------------------------------------------------------------------- /src/Feeder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Feeder.h -------------------------------------------------------------------------------- /src/Import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Import.cc -------------------------------------------------------------------------------- /src/Import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Import.h -------------------------------------------------------------------------------- /src/InternalCommands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/InternalCommands.cc -------------------------------------------------------------------------------- /src/InternalCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/InternalCommands.h -------------------------------------------------------------------------------- /src/Job.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Job.cc -------------------------------------------------------------------------------- /src/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Job.h -------------------------------------------------------------------------------- /src/Literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Literal.cc -------------------------------------------------------------------------------- /src/Literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Literal.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Pipeline.cc -------------------------------------------------------------------------------- /src/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Pipeline.h -------------------------------------------------------------------------------- /src/Script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Script.cc -------------------------------------------------------------------------------- /src/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Script.h -------------------------------------------------------------------------------- /src/Where.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Where.cc -------------------------------------------------------------------------------- /src/Where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/Where.h -------------------------------------------------------------------------------- /src/hoge.glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/hoge.glue -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/memo_exit_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/memo_exit_line -------------------------------------------------------------------------------- /src/obsolete/DefCond.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/DefCond.cc -------------------------------------------------------------------------------- /src/obsolete/DefCond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/DefCond.h -------------------------------------------------------------------------------- /src/obsolete/ExeEachline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/ExeEachline.cc -------------------------------------------------------------------------------- /src/obsolete/ExeEachline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/ExeEachline.h -------------------------------------------------------------------------------- /src/obsolete/ExecString.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/ExecString.cc -------------------------------------------------------------------------------- /src/obsolete/ExecString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/src/obsolete/ExecString.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/README -------------------------------------------------------------------------------- /test/argv.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/argv.test -------------------------------------------------------------------------------- /test/background_proc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/background_proc.test -------------------------------------------------------------------------------- /test/blank.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/blank.test -------------------------------------------------------------------------------- /test/comment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/comment.test -------------------------------------------------------------------------------- /test/exit_status.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/exit_status.test -------------------------------------------------------------------------------- /test/file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/file.test -------------------------------------------------------------------------------- /test/foreach.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/foreach.test -------------------------------------------------------------------------------- /test/hoge.glue: -------------------------------------------------------------------------------- 1 | /bin/echo argv[-1] 2 | -------------------------------------------------------------------------------- /test/hoge.test: -------------------------------------------------------------------------------- 1 | /bin/echo argv[-1] 2 | -------------------------------------------------------------------------------- /test/if.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/if.test -------------------------------------------------------------------------------- /test/import.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/import.test -------------------------------------------------------------------------------- /test/internal_commands.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/internal_commands.test -------------------------------------------------------------------------------- /test/job.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/job.test -------------------------------------------------------------------------------- /test/obsolete/eachline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/obsolete/eachline.test -------------------------------------------------------------------------------- /test/obsolete/repeat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/obsolete/repeat.test -------------------------------------------------------------------------------- /test/obsolete/while.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/obsolete/while.test -------------------------------------------------------------------------------- /test/pipeline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/pipeline.test -------------------------------------------------------------------------------- /test/proc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/proc.test -------------------------------------------------------------------------------- /test/signal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/signal.test -------------------------------------------------------------------------------- /test/simple_command.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/simple_command.test -------------------------------------------------------------------------------- /test/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/test_all.sh -------------------------------------------------------------------------------- /test/v_opt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/v_opt.test -------------------------------------------------------------------------------- /test/variable.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/variable.test -------------------------------------------------------------------------------- /test/varstring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/varstring.test -------------------------------------------------------------------------------- /test/where.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/where.test -------------------------------------------------------------------------------- /test/while.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryuichiueda/GlueLang/HEAD/test/while.test --------------------------------------------------------------------------------