diff --git a/beam/examples/beamsh/demo1.ds b/beam/examples/beamsh/demo1.ds new file mode 100755 index 0000000..20a3359 --- /dev/null +++ b/beam/examples/beamsh/demo1.ds @@ -0,0 +1,9 @@ +#!/usr/bin/env beamsh + +devnull { + multiprint { + exec tail -f /var/log/system.log & + exec ls -l + exec ls ksdhfkjdshf jksdfhkjsdhf + } +} diff --git a/beam/examples/beamsh/helloworld.ds b/beam/examples/beamsh/helloworld.ds index d3c6c6f..32e59b0 100755 --- a/beam/examples/beamsh/helloworld.ds +++ b/beam/examples/beamsh/helloworld.ds @@ -2,7 +2,7 @@ print { trace { - emit hello - emit world + emit msg=hello + emit msg=world } } diff --git a/beam/examples/beamsh/logdemo.ds b/beam/examples/beamsh/logdemo.ds new file mode 100755 index 0000000..8b729a9 --- /dev/null +++ b/beam/examples/beamsh/logdemo.ds @@ -0,0 +1,9 @@ +#!/usr/bin/env beamsh + +trace { + log { + exec ls -l + exec ls /tmp/jhsdfkjhsdjkfhsdjkfhsdjkkhsdjkf + echo hello world + } +}