Posts by spuk • 151 points
2 posts
-
3
votes3
answers666
viewsA: In bash, what is the difference between <, << and <<?
< is the incoming redirector, sends a file to the standard input (stdin) of the command << is called "here Documents", usually used to write a string inline in the script and send it to…
-
2
votes2
answers877
viewsA: Is there a specific rule for commit messages in versioning systems like Git?
As a rule, diff records exactly what/how it was done, so the commit message should: register the "because" was made (including references to bugs relevant, etc..); and/or say so abridged the general…