Start all of your commands with a comma
In this classic UNIX computing tip, the author addresses the recurring issue of command name collisions between personal shell scripts and standard system binaries. As modern distributions like Debian and Ubuntu grew to include tens of thousands of commands, the likelihood of a user-created script sharing a name with a system utility increased significantly. To solve this, the author identifies a unique naming convention using the comma character as a prefix. Unlike other special characters that carry specific meanings in the shell environment, the comma is treated as a standard character. This technique ensures that personal scripts are non-colliding, easy to type without the shift key, and easily discoverable through shell tab-completion, providing an elegant and robust organizational method for a user's local bin directory that has stood the test of time.