|
|
|
|
|
by thristian
1033 days ago
|
|
Because `echo -n` is a BSD-ism that's not supported on System V derivatives¹. It's perfectly legitimate for: echo -n "please hash this data"
...to output the bytes "-n please hash this data\n", which is even more misleading than the extra newline echo outputs normally.¹: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/e... |
|