2013-10-17 01:12:43 +02:00
|
|
|
[ "${input1: -2}" = /. ]
|
|
|
|
[ "${input2: -2}" = /. ]
|
|
|
|
|
2004-05-04 15:22:33 +02:00
|
|
|
mkdir $out
|
|
|
|
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
|
|
|
|
|
2005-02-01 10:23:38 +01:00
|
|
|
ln -s $input2 $out/input-2
|
|
|
|
|
|
|
|
# Self-reference.
|
|
|
|
ln -s $out $out/self
|
2009-03-17 17:33:48 +01:00
|
|
|
|
2014-02-26 18:59:01 +01:00
|
|
|
# Executable.
|
|
|
|
echo program > $out/program
|
|
|
|
chmod +x $out/program
|
|
|
|
|
2009-03-17 17:33:48 +01:00
|
|
|
echo FOO
|