![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tar the symbolic link | ganga.dharan | Shell Programming and Scripting | 1 | 05-23-2008 04:11 AM |
| need some info about symbolic link and hard link | detective linux | UNIX for Dummies Questions & Answers | 2 | 01-08-2008 03:36 AM |
| Symbolic Link Confusion | Sepia | UNIX for Dummies Questions & Answers | 5 | 05-07-2007 02:40 PM |
| Creating symbolic link | charbel | Shell Programming and Scripting | 9 | 10-01-2006 08:46 AM |
| 1 symbolic link to 2 different places? | Bashar | UNIX for Advanced & Expert Users | 2 | 08-27-2003 04:40 AM |
|
|
LinkBack | Thread Tools | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
When you did this command
ln -s x.sh ./scripts/y.sh it created a link from ./scripts/y.sh to x.sh. If you had done a ls -l ./scripts/y.sh, you would have seen that it was scripts/y.sh -> x.sh which means it was setting up the link as scripts/y.sh to scripts/x.sh You should have done it as ln -s ../x.sh ./scripts/y.sh |
||||
| Google UNIX.COM |