diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-08-05 10:28:36 +0200 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-09-03 00:33:19 +0100 |
commit | 89c517d9e26ad232d857ba37d897adbef19b30a9 (patch) | |
tree | 2dd50c147bcfa66c9ce05e5b4923e1910077ba81 /man | |
parent | affc8e8087ed6c2575d32e21df2986747f5852ee (diff) | |
download | coreutils-89c517d9e26ad232d857ba37d897adbef19b30a9.tar.xz |
base32: A new program similar to base64
Suggested in https://bugzilla.redhat.com/1250113
* AUTHORS: Add base32.
* THANKS.in: Add suggester.
* README: Reference the new program.
* NEWS: Mention the new program.
* src/.gitignore: Ignore the new binary.
* bootstrap.conf: Reference the gnulib base32 module.
* build-aux/gen-lists-of-programs.sh: Add base32.
* man/base32.x: A new template.
* man/.gitignore: Ignore the new man page.
* man/local.mk: Reference the new man page.
* doc/coreutils.texi (base32 invocation): Document the new command.
* src/local.mk: Adjust to build base32 based on base64.c.
* src/base64.c: Parameterize to use the correct headers,
functions and buffer sizes, depending on which binary
is being built.
* tests/misc/base64.pl: Adjust to test both base32 and base64.
* tests/misc/tty-eof.pl: Add base32 as a program that
accepts input on stdin without any options specified.
* scripts/git-hooks/commit-msg: Add base32 to the template.
Diffstat (limited to 'man')
-rw-r--r-- | man/.gitignore | 1 | ||||
-rw-r--r-- | man/base32.x | 4 | ||||
-rw-r--r-- | man/local.mk | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/man/.gitignore b/man/.gitignore index aef400292..37bc6c426 100644 --- a/man/.gitignore +++ b/man/.gitignore @@ -1,5 +1,6 @@ Makefile Makefile.in +base32.1 base64.1 basename.1 cat.1 diff --git a/man/base32.x b/man/base32.x new file mode 100644 index 000000000..f73de659d --- /dev/null +++ b/man/base32.x @@ -0,0 +1,4 @@ +[NAME] +base32 \- base32 encode/decode data and print to standard output +[DESCRIPTION] +.\" Add any additional description here diff --git a/man/local.mk b/man/local.mk index 45bda93e1..d1117606f 100644 --- a/man/local.mk +++ b/man/local.mk @@ -60,6 +60,7 @@ man/arch.1: src/uname$(EXEEXT) man/install.1: src/ginstall$(EXEEXT) man/test.1: src/[$(EXEEXT) +man/base32.1: src/base32$(EXEEXT) man/base64.1: src/base64$(EXEEXT) man/basename.1: src/basename$(EXEEXT) man/cat.1: src/cat$(EXEEXT) |