From e6a27fd324990372655c30ac48d2390237193df0 Mon Sep 17 00:00:00 2001 From: arf20 <35542215+arf20@users.noreply.github.com> Date: Sat, 21 May 2022 13:06:55 +0200 Subject: [PATCH] Add man stuff to README installation checklists --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 075ec91..2c8b44d 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,15 @@ Two ways: mkdir /usr/local/share/fcow cp src/fcow /usr/local/bin/fcow cp share/HELP /usr/local/share/fcow/HELP -# TODO: MAN +mkdir /usr/local/man/man6/ +cp man/fcow.6 /usr/local/man/man6/fcow.6 ``` 2. Making symlinks: ```sh ln -srf src/fcow /usr/local/bin/fcow +mkdir /usr/local/share/fcow ln -srf share /usr/local/share/fcow -# TODO: MAN +mkdir /usr/local/man/man6/ +ln -srf man/fcow.6 /usr/local/man/man6/fcow.6 ```