Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cp -s abc/* xyz
ranjank said:Actually i want to create symbolic link in different path and not in the same directory.
ranjank said:foreach i ( `ls` )
foreach? ln -s $i /net/abc/blah/xyz
foreach?end
ln -s $i /net/abc/blah/xyz
chipperMDW said:Just go into the destination directory...
cd /destination/directory
chipperMDW said:...and use ln -s.
ln -s ...
chipperMDW said:Pass the source pathnames (which you could get with a shell glob) as the first arguments...
ln -s /source/files/* ...
chipperMDW said:...then . (a dot, representing the current (destination) directory) as the last argument.
ln -s /source/files/* .