I recently had to make soft links to about 50 files. The shell was not expanding the wildcard (*) symbol as expected. The syntax for doing this with the 'ln' command is:
ln -s source_file target_fileAfter some experimentation I found the following works perfectly.
ln -s /path/to/source/* /path/to/target/directory/This resulted in the wildcard being expanded into each of the file names and a soft link being made to each of the files in my target directory.
•
[3,770 views]

