Results 1 to 3 of 3
I need to work a lot with coding in c..
Many a times it happens that files are dispersed in many folders which have to be modified.
It's vexing me ...
- 10-05-2007 #1Just Joined!
- Join Date
- Sep 2007
- Posts
- 19
hiii
I need to work a lot with coding in c..
Many a times it happens that files are dispersed in many folders which have to be modified.
It's vexing me to cd to the directory in which the file is present...
SO is there a way that without cding I can open required files as if when I want from different folders...
Means can we set links between different directories as if all files present in a common buffer
so that without cding I can modify different files in different folders.. in vim editor
thanks
- 10-05-2007 #2
You can create symbolic links (symlinks) using the ln command e.g.
Code:$ln -s /path/to/original/file /path/to/link
- 10-05-2007 #3Just Joined!
- Join Date
- Sep 2007
- Posts
- 19
Thank you problem solved


