> For the complete documentation index, see [llms.txt](https://agrat.gitbook.io/admin/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agrat.gitbook.io/admin/linux/comands/link.md).

# 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 .
```
