On Sep 21, 2022, at 15:18, Steve Nickolas <usotsuki@buric.co> wrote:
On Wed, 21 Sep 2022, Dan Cross wrote:On Wed, Sep 21, 2022 at 5:50 PM Phil Budne <phil@ultimate.com> wrote:Not to excuse the failure of the BSD team to properly attribute sourceorigin by adding only their copyright notice, but didn't AT&T tryunfair turnabout by not properly attributing the origins of theirTCP/IP code?One of my favorite copyright notices was for /bin/true in System V.An empty file got turned into 7 lines of comments holding copyrightboilerplate and an `#ident` line with an SCCS version number:progress!- Dan C.
And then when I wrote it for my own project:
true -
#!/bin/sh
# Does something this small need a license? - SVN
exit 0
false -
#!/bin/sh
# Does something this small need a license? - SVN
exit 1
-uso.