![]() |
|
|
|
|
|||||||
| 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 |
| Quickly navigating Web pages with Firefox extensions | iBot | UNIX and Linux RSS News | 0 | 03-24-2008 12:20 AM |
| how to get file from Unix system | heru_90 | Shell Programming and Scripting | 1 | 06-30-2006 07:54 AM |
| How do I send a file as an attachment (gzip file) on a Unix system | lacca | UNIX for Dummies Questions & Answers | 3 | 07-03-2002 10:04 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Unix - Navigating the file system
When I log on to my unix session I have a default location. But I need to navigate 3 directories up then 6 directories down to where I want to be. There must be a way to create some sort of short cut from my defeault location to my required location. Can anyone help?
|
| Forum Sponsor | ||
|
|
|
|||
|
I think what you are looking for is a symbolic link. You could create a link in your home directory to the location you want to go. Look at the manpage for the command "ln" on your system to get the right syntax. On Solaris it would be something like this:
ln -s ../../../dir1/dir2/dir3/dir4/dir5/targetdir name Where that path is the path to the directory you want, and name is the name of the link in your home directory. After that, doing "cd name" would put you in your target directory. |