From 659a76196044d63029917076eb8c94f51a44d6eb Mon Sep 17 00:00:00 2001 From: Jacob Adams Date: Sat, 21 Mar 2015 22:41:10 -0400 Subject: [PATCH] commands/fix: create manpage for fix(8) --- minix/commands/fix/Makefile | 2 +- minix/commands/fix/fix.8 | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 minix/commands/fix/fix.8 diff --git a/minix/commands/fix/Makefile b/minix/commands/fix/Makefile index 9caaa4219..5d4ca1e66 100644 --- a/minix/commands/fix/Makefile +++ b/minix/commands/fix/Makefile @@ -1,4 +1,4 @@ PROG= fix -MAN= +MAN= fix.8 .include diff --git a/minix/commands/fix/fix.8 b/minix/commands/fix/fix.8 new file mode 100644 index 000000000..3c01f89c3 --- /dev/null +++ b/minix/commands/fix/fix.8 @@ -0,0 +1,15 @@ +.TH man 8 "21 March 2015" "1.0" "fix man page" +.SH NAME +fix \- Update file from difflist +.SH SYNOPSIS +fix +.SH DESCRIPTION +Works on diffs like patch does but outputs to STDOUT instead of overwriting the file +.SH EXAMPLES +diff test.old test.new > test.patch + +fix test.old test.patch > test.new.2 +.SH SEE ALSO +patch(1), diff(1) +.SH AUTHOR +Manpage written by Jacob Adams