コマンドのマニュアル

コマンドのマニュアル

manコマンドでオンラインマニュアルを参照する

こんな時に便利

  • コマンドの使い方が知りたい
  • コマンドの意味や役割(実行したい際の出力内容)
  • 引数やオプションの指定方法を教えて
  • オプションの意味は?

manコマンドの書式

man 調べるコマンド
[user01@localhost ~]$man cal
CAL(1)                           User Commands                          CAL(1)
NAME
       cal - display a calendar
SYNOPSIS
       cal [options] [[[day] month] year]
DESCRIPTION
       cal  displays  a  simple  calendar.  If no arguments are specified, the
       current month is displayed. (以下省略)

–helpオプションを使ってみよう

コマンドによっては、ヘルプが用意されているものもあります。

[user01@localhost ~]$cal --help
Usage:
 cal [options] [[[day] month] year]
オプション:
 -1, --one        show only current month (default)
 -3, --three      show previous, current and next month
 -s, --sunday     Sunday as first day of week
 -m, --monday     Monday as first day of week
 -j, --julian     output Julian dates
 -y, --year       show whole current year
 -V, --version    display version information and exit
 -h, --help       display this help text and exit


NEXT>> システムの終了と再起動