blob: 7e60718becd7a4d56c3af6dd6a41fb2e0d1675a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
ROOT=$(dirname $0)/..
PATH=$ROOT/cmd/tunnel
tunnel set cmd echo
tunnel set args ^"@x, @y!"
tunnel set x Hello
tunnel set y World
tunnel @cmd @args
tunnel clear
|