initial commit

This commit is contained in:
Emma Tebibyte 2023-03-10 14:29:00 -05:00
commit 0f3695f31e
Signed by: emma
GPG Key ID: 6D661C738815E7DD
2 changed files with 30 additions and 0 deletions

20
bike.1 Normal file
View File

@ -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.

10
bike.c Normal file
View File

@ -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"); }