blob: b02108fe6b48dd15caa4b4bc078f4e54160fb107 (
plain) (
tree)
|
|
[ "${input1: -2}" = /. ]
[ "${input2: -2}" = /. ]
mkdir $out
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
ln -s $input2 $out/input-2
# Self-reference.
ln -s $out $out/self
echo FOO
|