CosmOS > do args.script red green > echo one is $1 one is red > echo two is $2 two is green > echo all of it is $args all of it is red green > args.script blue yellow > echo one is $1 one is blue > echo two is $2 two is yellow > echo all of it is $args all of it is blue yellow > pass.script hello there > Say $args it says: hello there finished > do holds.script top level > echo outer has $1 outer has top > do args.script deep down > echo one is $1 one is deep > echo two is $2 two is down > echo all of it is $args all of it is deep down > echo outer still has $1 and $args outer still has top and top level > do args.script only > echo one is $1 one is only > echo two is $2 nothing is set called 2 stopped: that line did not work > $1 nothing is set called 1 > exit halted Execution halted. [exit 0]