I\'m trying to create a symbolic link (soft link) from the results of a find command. I\'m using sed to remove the ./ that precedes the file name. I\'m doing this so I can paste
Easier:
Go to the folder where you want to have the files in and do:
find /path/with/files -type f -name "*txt*" -exec ln -s {} . ';'