From 0f3695f31e93061c90bc9af037097a7c65d5712f Mon Sep 17 00:00:00 2001 From: emma Date: Fri, 10 Mar 2023 14:29:00 -0500 Subject: [PATCH] initial commit --- bike.1 | 20 ++++++++++++++++++++ bike.c | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 bike.1 create mode 100644 bike.c 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"); }