| ▲ | usefulcat 8 hours ago | |
It may be a bit uncommon, but it's not at all new. For example, on a Linux system I have, there are several files in /usr/bin that use hard links to refer to the same file (inode) by different names: bunzip2 / bzcat / bzip2 gunzip / uncompress unzip / zipinfo pigz / unpigz pkg-config / x86_64-pc-linux-gnu-pkg-config perlbug / perlthanks Use ls -li to show the inode number for each file or directory. For example: | ||
| ▲ | tehbeard 7 hours ago | parent [-] | |
That's more a case of providing the distinct "APIs" ( bzip2 , gunzip etc) to userland / scripts, while the implementation for all is just one binary; than it being "Configuration via name..." Somewhat similar to how busybox does its thing. | ||