1Blurb::
2Paths to be linked into each working directory
3
4Description::
5Specifies the paths (files or directories) that will be symbolically
6linked from each working directory.  Wildcards using * and ? are
7permitted.  Linking is space-saving and useful for files not modified
8during the function evaluation.  However, not all filesystems support
9linking, for example, support on Windows varies.
10
11Topics::
12Examples::
13
14Specifying
15\verbatim
16  link_files = 'siminput*.in' '/path/to/simdir1' 'simdir2/*'
17\endverbatim
18will create copies
19\verbatim
20  workdir/siminput*.in  # links to each of rundir / siminput*.in
21  workdir/simdir1/      # whole directory simdir1 linked
22  workdir/*             # each entry in directory simdir2 linked
23\endverbatim
24
25Theory::
26Faq::
27See_Also::
28