3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

自作マニュアルを作る。【linux】【man】

Last updated at Posted at 2020-08-13

###環境

  • ubuntu20.04 LTS

##やろう

Ctrl+Alt+tで端末を起動します。
以下のコマンドを入力してください。(manlは何でもいい)

$ mkdir man 
$ cd man 
$ mkdir manl 
$ cd manl

そうしたらテキストエディターでmanの中身を書きます。qiitaのマークダウンみたいに書式があります。

自作コマンドの作り方

自作のコマンドを作成した - qiita

自作コマンドのmanを書きます。

自作コマンドの中身:

lock.sh
#!/bin/sh
#chmod=アクセス権限を変更する
#a-rwx=すべての人に読み込み・書き込み・実行の権限を削除する
#$1=引数の取得(引数=a-rwxするファイル名)
chmod a-rwx $1
lock.l
.\"この行はコメントです。
.TH lOCK
.SH 名前
.\"名前と一言で言う説明を書きます。
lock \- ファイルの読み込み・書き込みのアクセス権を削除する
.SH 書式
.B lock 
[ ファイル名 ]
.SH 説明
.\"説明を書きます。
lockはテキストファイルや画像ファイル,などのアクセス権限を削除します。

.\"作者と著作権を書きます。
.SH 作者
作者 ichiri sato.
.SH 著作権
(c) 2020 ichiri sato. 

-M引数を使って自作manを表示します。

$ man -M ~/man lock.l
表示結果
lOCK()                                                                 lOCK()

名前
       lock - ファイルの読み込み・書き込みのアクセス権を削除する

書式
       lock [ ファイル名 ]

説明
       lockはテキストファイルや画像ファイル,などのアクセス権限を削除します。

作者
       作者 ichiri sato.

著作権
       (c) 2020 ichiri sato.
                                                                       lOCK()

~
~
~
~
~
(省略 (ずっと ~ ~ ~) )

##参考記事

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?