link
Для мултилинка
cp
with -s
option can create a soft links (or -l
for hard links).
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