cp with -s option can create a soft links (or -l for hard links).
cp
-s
-l
From current directory can by used like this:
$ cp -s ../path/with/scripts/* .
In your case it will be like this:
$ cp -s ../source/*.bar .
Last updated 5 years ago