commit 0f3695f31e93061c90bc9af037097a7c65d5712f Author: emma Date: Fri Mar 10 14:29:00 2023 -0500 initial commit diff --git a/bike.1 b/bike.1 new file mode 100644 index 0000000..814a7e7 --- /dev/null +++ b/bike.1 @@ -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 +. +.SH COPYRIGHT +Bike is marked with CC0 1.0. To view a copy of this license, visit +. +.SH SEE ALSO +The GNU Project’s +.BR yes(1) +utility. diff --git a/bike.c b/bike.c new file mode 100644 index 0000000..4fdea44 --- /dev/null +++ b/bike.c @@ -0,0 +1,10 @@ +/* + * Copyright (c) 2023 Emma Tebibyte + * SPDX-License-Identifier: CC0 + * + * Bike is marked with CC0 1.0. To view a copy of this license, visit + * . + */ + +#include +main() { printf("bike\n"); }