bash symlink files matching glob
# Basic syntax:
ln -s /source/files/*.bar /destination/directory/
# Where:
# - -s makes symbolic links instead of hard links
# - symbolic links to the files ending in .bar in the /source/files/ directory
# are made in the /destination/directory/