Results 1 to 2 of 2
Is there an easy way to create soft links in a certain directory to point to all of the sub-directories in a another directory?...
- 08-26-2008 #1Just Joined!
- Join Date
- Feb 2008
- Posts
- 4
soft links
Is there an easy way to create soft links in a certain directory to point to all of the sub-directories in a another directory?
- 08-27-2008 #2Linux Guru
- Join Date
- Nov 2007
- Location
- Córdoba (Spain)
- Posts
- 1,513
Better an example:
Would symlink all the dirs in the root of your system into the current directory.Code:find / -maxdepth 1 -type d -exec ln -s '{}' \;


Reply With Quote