aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man/basename.148
-rw-r--r--man/cat.170
-rw-r--r--man/dirname.141
-rw-r--r--man/echo.145
-rw-r--r--man/false.127
-rw-r--r--man/sleep.152
-rw-r--r--man/true.127
-rw-r--r--man/uname.1104
8 files changed, 238 insertions, 176 deletions
diff --git a/man/basename.1 b/man/basename.1
index e3dbdb5..ec8ed83 100644
--- a/man/basename.1
+++ b/man/basename.1
@@ -1,24 +1,32 @@
-.TH BASENAME 1 2022-07-10 Ferass'\ Base\ System.
-.SH NAME
+BASENAME(1) "Ferass' Base System"
+
+# NAME
+
basename \- Return non-directory portion of a pathname
-.SH SYNOPSIS
-.B basename
-.RB < STRING >
-.RB [ SUFFIX ]
-.SH DESCRIPTION
-Return non-directory portion of the STRING pathname.
-.SH EXAMPLES
-.TP
-.B basename /bin/sh
-Return non-directory portion ("sh").
-.TP
-.B basename /usr/bin/basename name
-Remove the suffix "name" from "basename" and return "base".
-.SH AUTHOR
+
+# SYNOPSIS
+
+*basename* _string_ [*suffix*]
+
+# DESCRIPTION
+
+Return non-directory portion of the *string* pathname.
+
+# EXAMPLES
+
+*basename /bin/sh*
+ Return non-directory portion ("sh").
+
+*basename /usr/bin/basename name*
+ Remove the suffix "name" from "basename" and return "base".
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-.P
+project - Ferass' Base System.
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/cat.1 b/man/cat.1
index f7a27e5..5069093 100644
--- a/man/cat.1
+++ b/man/cat.1
@@ -1,40 +1,46 @@
-.TH CAT 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
-cat \- concatenate files to stdout
-.SH SYNOPSIS
-.B cat
-.RB [ \-u ]
-.RB [ FILE ] ...
-.SH DESCRIPTION
+CAT(1) "Ferass' Base System"
+
+# NAME
+
+cat - concatenate files to stdout
+
+# SYNOPSIS
+
+*cat* [*-u*] [*file*] ...
+
+# DESCRIPTION
+
Concatenate files to standard output (stdout).
-.P
With no file or when file is -, read and concatenate standard input
to standard output.
-.TP
-.B -u
-Print unbuffered.
-.P
-.SH EXAMPLES
-.TP
-.B cat foobar
-Output foobar's contents to standard output.
-.TP
-.B cat
-Output standard input to standard output.
-.TP
-.B cat -u hello.c
-Output hello.c's contents unbuffered to standard output.
-.TP
-.B cat foo bar baz
-Output foo's contents, then bar's, then baz's to standard output.
-.SH AUTHOR
+
+*-u*
+ Print unbuffered.
+
+# EXAMPLES
+
+*cat foobar*
+ Output foobar's contents to standard output.
+
+*cat*
+ Output standard input to standard output.
+
+*cat -u hello.c*
+ Output hello.c's contents unbuffered to standard output.
+
+*cat foo bar baz*
+ Output foo's contents, then bar's, then baz's to standard output.
+
+# AUTHOR
+
Originally written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System. Part of the code is written by
+project - Ferass' Base System. Part of the code is written by
Leah Rowe.
-.P
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
-.P
+
Copyright (C) 2022 Leah Rowe
diff --git a/man/dirname.1 b/man/dirname.1
index 5662530..aec4661 100644
--- a/man/dirname.1
+++ b/man/dirname.1
@@ -1,20 +1,29 @@
-.TH DIRNAME 1 2022-10-07 Ferass'\ Base\ System.
-.SH NAME
-dirname \- Return directory portion of a pathname
-.SH SYNOPSIS
-.B dirname
-.RB < STRING >
-.SH DESCRIPTION
-Return directory portion of the STRING pathname.
-.SH EXAMPLES
-.TP
-.B dirname /bin/sh
-Return directory portion ("/bin/").
-.SH AUTHOR
+DIRNAME(1) "Ferass' Base System"
+
+# NAME
+
+dirname - Return directory portion of a pathname
+
+# SYNOPSIS
+
+*dirname* _string_
+
+# DESCRIPTION
+
+Return directory portion of the STRING pathname.
+
+# EXAMPLES
+
+*dirname /bin/sh*
+ Return directory portion ("/bin/").
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
project \- Ferass' Base System.
-.P
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/echo.1 b/man/echo.1
index 904cdb5..d62b70f 100644
--- a/man/echo.1
+++ b/man/echo.1
@@ -1,23 +1,32 @@
-.TH ECHO 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
+ECHO(1) "Ferass' Base System"
+
+# NAME
+
echo \- Write a string to standard output
-.SH SYNOPSIS
-.B echo
-.RB [ STRING ] ...
-.SH DESCRIPTION
+
+# SYNOPSIS
+
+*echo* [*string*] ...
+
+# DESCRIPTION
+
Write a string to standard output (stdout).
-.SH EXAMPLES
-.TP
-.B echo foobar
-Output the string "foobar" to standard output.
-.TP
-.B echo foo bar baz
-Output the string "foo bar baz" to standard output.
-.SH AUTHOR
+
+# EXAMPLES
+
+*echo foobar*
+ Output the string "foobar" to standard output.
+
+*echo foo bar baz*
+ Output the string "foo bar baz" to standard output.
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-.P
+project - Ferass' Base System.
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/false.1 b/man/false.1
index 5ceeba2..0a0bc92 100644
--- a/man/false.1
+++ b/man/false.1
@@ -1,15 +1,24 @@
-.TH FALSE 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
+FALSE(1) "Ferass' Base System"
+
+# NAME
+
false \- Return false value
-.SH SYNOPSIS
-.B false
-.SH DESCRIPTION
+
+# SYNOPSIS
+
+*false*
+
+# DESCRIPTION
+
Return false value.
-.SH AUTHOR
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
project \- Ferass' Base System.
-.P
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/sleep.1 b/man/sleep.1
index 2b51022..5d1372f 100644
--- a/man/sleep.1
+++ b/man/sleep.1
@@ -1,27 +1,35 @@
-.TH SLEEP 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
+SLEEP(1) "Ferass' Base System"
+
+# NAME
+
sleep \- suspend execution for an interval
-.SH SYNOPSIS
-.B sleep
-.RB < TIME >
-.SH DESCRIPTION
+
+# SYNOPSIS
+
+*sleep* _time_
+
+# DESCRIPTION
+
Suspend execution for an interval.
-.TP
-.SH EXAMPLES
-.TP
-.B sleep 1
-Suspend execution for one second.
-.TP
-.B sleep 60
-Suspend execution for 1 minute (60 seconds).
-.TP
-.B sleep 90
-Suspend execution for 1 minute and 30 seconds (90 seconds).
-.SH AUTHOR
+
+# EXAMPLES
+
+*sleep 1*
+ Suspend execution for one second.
+
+*sleep 60*
+ Suspend execution for 1 minute (60 seconds).
+
+*sleep 90*
+ Suspend execution for 1 minute and 30 seconds (90 seconds).
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-.P
+project - Ferass' Base System.
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/true.1 b/man/true.1
index 55a3332..422c7e2 100644
--- a/man/true.1
+++ b/man/true.1
@@ -1,15 +1,24 @@
-.TH TRUE 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
+TRUE(1) "Ferass' Base System"
+
+# NAME
+
true \- Return true value
-.SH SYNOPSIS
-.B true
-.SH DESCRIPTION
+
+# SYNOPSIS
+
+*true*
+
+# DESCRIPTION
+
Return true value.
-.SH AUTHOR
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
project \- Ferass' Base System.
-.P
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/uname.1 b/man/uname.1
index 23e3f06..9efbdfc 100644
--- a/man/uname.1
+++ b/man/uname.1
@@ -1,55 +1,59 @@
-.TH UNAME 1 2022-07-02 Ferass'\ Base\ System.
-.SH NAME
-uname \- return system information
-.SH SYNOPSIS
-.B uname
-.RB [ \-amnrsv ]
-.SH DESCRIPTION
+UNAME(1) "Ferass' Base System"
+
+# NAME
+
+uname - return system information
+
+# SYNOPSIS
+
+*uname* [-*amnrsv*]
+
+# DESCRIPTION
+
Return system information.
-.P
+
With no argument, write the operating system name.
-.TP
-.B -a
-Behave as if -mnrsv were specified.
-.P
-.TP
-.B -m
-Write the name of the hardware architecture on which the system is running to
-standard output.
-.P
-.TP
-.B -n
-Write the name of this network hostname node to standard output.
-.P
-.TP
-.B -r
-Write the current release level of the operating system implementation.
-.P
-.TP
-.B -s
-Write the name of the running operating system implementation.
-.P
-.TP
-.B -v
-Write the current version of this release of the operating system
-implementation.
-.SH EXAMPLES
-.TP
-.B uname
-Write the name of the running operating system implementation to standard
-output.
-.TP
-.B uname -mnrsv
-Same as uname -a.
-.TP
-.B uname -v
-Write the current version of this release of the operating system
-implementation.
-.SH AUTHOR
+
+*-a*
+ Behave as if -mnrsv were specified.
+
+*-m*
+ Write the name of the hardware architecture on which the system is running
+ to standard output.
+
+*-n*
+ Write the name of this network hostname node to standard output.
+
+*-r*
+ Write the current release level of the operating system implementation.
+
+*-s*
+ Write the name of the running operating system implementation.
+
+*-v*
+ Write the current version of this release of the operating system
+ implementation.
+
+# EXAMPLES
+
+*uname*
+ Write the name of the running operating system implementation to standard
+ output.
+
+*uname -mnrsv*
+ Same as uname -a.
+
+*uname -v*
+ Write the current version of this release of the operating system
+ implementation.
+
+# AUTHOR
+
Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-.P
+project - Ferass' Base System.
+
Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-.SH COPYRIGHT
-.P
+
+# COPYRIGHT
+
Copyright (C) 2022 Ferass EL HAFIDI