How do I symlink all files from one directory to another in bash?

bash, ln, symlink

Solution

ln -s /mnt/usr/lib/* /usr/lib/

I guess, this belongs to superuser, though.

Problem

I want to link ( `ln -s` ) all files that are in `/mnt/usr/lib/` into `/usr/lib/` There are lots of files, how can it be done quickly? :)

Original source