initial commit

main
Emma Tebibyte 3 months ago
commit 0f3695f31e
Signed by: emma
GPG Key ID: 6D661C738815E7DD

@ -0,0 +1,20 @@
.TH BIKE 1
.SH NAME
.B bike
\(en print “bike” to the screen.
.SH SYNOPSIS
.B bike
.SH DESCRIPTION
The bike utility prints “bike” to the standard output.
.SH AUTHOR
Written by Emma Tebibyte.
.SH REPORTING BUGS
Any bugs may be reported on the bug tracker at
<https://git.tebibyte.media/emma/bike>.
.SH COPYRIGHT
Bike is marked with CC0 1.0. To view a copy of this license, visit
<http://creativecommons.org/publicdomain/zero/1.0>.
.SH SEE ALSO
The GNU Projects
.BR yes(1)
utility.

@ -0,0 +1,10 @@
/*
* Copyright (c) 2023 Emma Tebibyte <emma@tebibyte.media>
* SPDX-License-Identifier: CC0
*
* Bike is marked with CC0 1.0. To view a copy of this license, visit
* <http://creativecommons.org/publicdomain/zero/1.0>.
*/
#include <stdio.h>
main() { printf("bike\n"); }
Loading…
Cancel
Save