#!/bin/bash export IFS=" " for i in `find $1 -type f` do ln -s "$i" . done