c6290e42bc
* Fix the substitutes tests.
10 lines
114 B
Bash
Executable file
10 lines
114 B
Bash
Executable file
#! /bin/sh -ex
|
|
echo $*
|
|
|
|
case $* in
|
|
*)
|
|
mkdir $1
|
|
echo $3 $4 > $1/hello
|
|
;;
|
|
esac
|
|
|