how to create symbolic link between folders.....

hi champs,

i have folders structure up to log is there , which is as below,
app
|
|---version-4.1
| |----bin
| | |
| | |-----a.sh
| | |-----b.sh
| |
| |----log
|
|
\---version (symbolic link to version-4.1)

but i want to create another folder version which is a symbolic link to version-4.1 , how can i ?????
so that from symbolic link folder version , i could able to execute a.sh and b.sh.........

need help?????

move to the directory you want the symbolic link, then:

ln -s path-to-actual-folder name-of-link

to confirm, do:

ls -ld name-of-link

1 Like

thanx alot porter.....
i was trying wrong way.......