Create and/or Move into your destination folder:
mkdir newfolder && cd newfolder
or
cd desiredfolder
Next, create a symbiotic link to file(s) using: (remember to use sudo if needed)
ln -s ../sourcefolder/* .
In this example scenario, we have three apple.txt files in a folder:
$ l folder1
apple1.txt apple2.txt apple3.txt
$ cd folder2
The following string will create a link to all of the "apple.txt" files to the currently working folder: (folder2)
ln -sv ../folder1/apple*.txt .
The terminal will return with the newly created links.