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