9 lines
193 B
Bash
9 lines
193 B
Bash
|
export PATH=/bin:/usr/bin:$PATH
|
||
|
|
||
|
mkdir $out
|
||
|
echo $(cat $input1/foo)$(cat $input2/bar)xyzzy > $out/foobar
|
||
|
|
||
|
# Check that the GC hasn't deleted the lock on our output.
|
||
|
test -e "$out.lock"
|
||
|
|
||
|
sleep 3
|