From 66e0b8665378d4c076ecf1e4f0805cc3c20b482f Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 21 Jul 2018 19:24:45 +0100 Subject: [PATCH] mv/cp: Initial documentation --- Applications/util/cp.1 | 19 +++++++++++++++++++ Applications/util/mv.1 | 21 +++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 Applications/util/cp.1 create mode 100644 Applications/util/mv.1 diff --git a/Applications/util/cp.1 b/Applications/util/cp.1 new file mode 100644 index 00000000..316a1342 --- /dev/null +++ b/Applications/util/cp.1 @@ -0,0 +1,19 @@ +CP(1) +## NAME +*cp* - copy files and directories +## SYNOPSIS +*cp* \[OPTION\]... SOURCE DEST +*cp* \[OPTION\]... SOURCE... DIRECTORY + +## DESCRIPTION +Copies the files listed in SOURCE to the destination, or if a directory into +the destination directory. + +## BUGS ## +The standard POSIX options are not currently supported. + +## STANDARDS ## +See bugs. + +## AUTHORS +David Bell, Alan Cox diff --git a/Applications/util/mv.1 b/Applications/util/mv.1 new file mode 100644 index 00000000..b5703036 --- /dev/null +++ b/Applications/util/mv.1 @@ -0,0 +1,21 @@ +MV(1) +## NAME +*mv* - move files and directories +## SYNOPSIS +*mv* \[OPTION\]... SOURCE DEST +*mv* \[OPTION\]... SOURCE... DIRECTORY + +## DESCRIPTION +Copies the files listed in SOURCE to the destination, or if a directory into +the destination directory, and after successfully copying removes the +original. + +## BUGS ## +The standard POSIX options are not currently supported. The *rename* system +call should be used when possible. + +## STANDARDS ## +See bugs. + +## AUTHORS +David Bell, Alan Cox -- 2.34.1