blob: b02108fe6b48dd15caa4b4bc078f4e54160fb107 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
[ "${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
|