I have a folder, x, whose path I don't want to touch, but I want to have a reference to all of the content within x so that I can upload it to github from a different path. How can I make a new folder, y, that holds in memory a reference to x? I plan on only modifying things in folder x, not folder y; folder y just reading the contents of folder x.
Asked
Active
Viewed 730 times
ln -s /path/to/folder /path/to/reference/folder
– Terrance Mar 23 '20 at 15:16