initial commit
This commit is contained in:
commit
0f3695f31e
20
bike.1
Normal file
20
bike.1
Normal 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 Project’s
|
||||
.BR yes(1)
|
||||
utility.
|
10
bike.c
Normal file
10
bike.c
Normal 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"); }
|
Loading…
Reference in New Issue
Block a user