diff options
Diffstat (limited to 'tests/substituter.sh')
-rwxr-xr-x | tests/substituter.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/substituter.sh b/tests/substituter.sh new file mode 100755 index 000000000000..005e97605c91 --- /dev/null +++ b/tests/substituter.sh @@ -0,0 +1,10 @@ +#! /bin/sh -ex +echo $* + +case $* in + *) + mkdir $1 + echo $3 $4 > $1/hello + ;; +esac + |