Categories Uncategorized Symlinks, amirite? Post author By Joey deVilla Post date December 13, 2018 1 Comment on Symlinks, amirite? My trick is to remember it like this: ln -s $real $fake. ← Holiday gift ideas for the aspiring Android developer → What’s happening in the Tampa Bay tech/entrepreneur/nerd scene (Week of Monday, December 17, 2018) One reply on “Symlinks, amirite?” The way to remember this is you can leave out one argument. ln -s /foo/bar Creates a link from there to here (current directory) under the same name. So if you want a different dest name, add an argument ln -s /foo/bar here Comments are closed.
The way to remember this is you can leave out one argument. ln -s /foo/bar Creates a link from there to here (current directory) under the same name. So if you want a different dest name, add an argument ln -s /foo/bar here
One reply on “Symlinks, amirite?”
The way to remember this is you can leave out one argument.
ln -s /foo/bar
Creates a link from there to here (current directory) under the same name. So if you want a different dest name, add an argument
ln -s /foo/bar here