Good style/practices for separators in file (or directory) names

I’m not exactly sure if this is a “right” question to post here. I’m probably asking more about “opinions” than actual categorical answers (of those that either work or don’t, and that’s it). I was wondering what name separators would be the most linux friendly (or more specifically, Bash friendly) and human friendly at the … Read more

What is the difference if I start bash with “/bin/bash” or “/usr/bin/env bash”?

In shell scripts one specifies language interpreter on shebang(#!) line. As far as I know, it is recommended to use #!/usr/bin/env bash because env is always located in /usr/bin directory while location of bash may vary from system to system. However, are there any technical differences if bash is started directly with /bin/bash or through … Read more