├── .gitignore ├── LICENSE ├── Makefile ├── Readme.md ├── symlinks.8 └── symlinks.c /.gitignore: -------------------------------------------------------------------------------- 1 | /symlinks 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandt/symlinks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandt/symlinks/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandt/symlinks/HEAD/Readme.md -------------------------------------------------------------------------------- /symlinks.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandt/symlinks/HEAD/symlinks.8 -------------------------------------------------------------------------------- /symlinks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandt/symlinks/HEAD/symlinks.c --------------------------------------------------------------------------------