aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/basename.132
-rw-r--r--man/cat.146
-rw-r--r--man/dirname.129
-rw-r--r--man/echo.132
-rw-r--r--man/false.124
-rw-r--r--man/sleep.135
-rw-r--r--man/true.124
-rw-r--r--man/uname.159
8 files changed, 0 insertions, 281 deletions
diff --git a/man/basename.1 b/man/basename.1
deleted file mode 100644
index ec8ed83..0000000
--- a/man/basename.1
+++ /dev/null
@@ -1,32 +0,0 @@
-BASENAME(1) "Ferass' Base System"
-
-# NAME
-
-basename \- Return non-directory portion of a pathname
-
-# 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.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/cat.1 b/man/cat.1
deleted file mode 100644
index 5069093..0000000
--- a/man/cat.1
+++ /dev/null
@@ -1,46 +0,0 @@
-CAT(1) "Ferass' Base System"
-
-# NAME
-
-cat - concatenate files to stdout
-
-# SYNOPSIS
-
-*cat* [*-u*] [*file*] ...
-
-# DESCRIPTION
-
-Concatenate files to standard output (stdout).
-With no file or when file is -, read and concatenate standard input
-to standard output.
-
-*-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
-Leah Rowe.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
-
-Copyright (C) 2022 Leah Rowe
diff --git a/man/dirname.1 b/man/dirname.1
deleted file mode 100644
index aec4661..0000000
--- a/man/dirname.1
+++ /dev/null
@@ -1,29 +0,0 @@
-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.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/echo.1 b/man/echo.1
deleted file mode 100644
index d62b70f..0000000
--- a/man/echo.1
+++ /dev/null
@@ -1,32 +0,0 @@
-ECHO(1) "Ferass' Base System"
-
-# NAME
-
-echo \- Write a string to standard output
-
-# SYNOPSIS
-
-*echo* [*string*] ...
-
-# DESCRIPTION
-
-Write a string to standard output (stdout).
-
-# 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.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/false.1 b/man/false.1
deleted file mode 100644
index 0a0bc92..0000000
--- a/man/false.1
+++ /dev/null
@@ -1,24 +0,0 @@
-FALSE(1) "Ferass' Base System"
-
-# NAME
-
-false \- Return false value
-
-# SYNOPSIS
-
-*false*
-
-# DESCRIPTION
-
-Return false value.
-
-# AUTHOR
-
-Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/sleep.1 b/man/sleep.1
deleted file mode 100644
index 5d1372f..0000000
--- a/man/sleep.1
+++ /dev/null
@@ -1,35 +0,0 @@
-SLEEP(1) "Ferass' Base System"
-
-# NAME
-
-sleep \- suspend execution for an interval
-
-# SYNOPSIS
-
-*sleep* _time_
-
-# DESCRIPTION
-
-Suspend execution for an interval.
-
-# 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.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/true.1 b/man/true.1
deleted file mode 100644
index 422c7e2..0000000
--- a/man/true.1
+++ /dev/null
@@ -1,24 +0,0 @@
-TRUE(1) "Ferass' Base System"
-
-# NAME
-
-true \- Return true value
-
-# SYNOPSIS
-
-*true*
-
-# DESCRIPTION
-
-Return true value.
-
-# AUTHOR
-
-Written by Ferass EL HAFIDI as part of the fases
-project \- Ferass' Base System.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI
diff --git a/man/uname.1 b/man/uname.1
deleted file mode 100644
index 9efbdfc..0000000
--- a/man/uname.1
+++ /dev/null
@@ -1,59 +0,0 @@
-UNAME(1) "Ferass' Base System"
-
-# NAME
-
-uname - return system information
-
-# SYNOPSIS
-
-*uname* [-*amnrsv*]
-
-# DESCRIPTION
-
-Return system information.
-
-With no argument, write the operating system name.
-
-*-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.
-
-Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
-
-# COPYRIGHT
-
-Copyright (C) 2022 Ferass EL HAFIDI