Open2
manコマンド メモ
manコマンドで表示したマニュアルのどのセクションに何が書いてあるかを一覧したいときは、whatisコマンドを使うと便利。
openについて実行した例;
$ whatis open
open (1) - opens a file or URL in the user's preferred application
open (2) - open and possibly create a file
特定のセクションを開きたい場合は、man後にセクション番号を記載する。
open (2)を開く際の例;
$ man 2 open
open(2) System Calls Manual open(2)
NAME
open, openat, creat - open and possibly create a file
LIBRARY
Standard C library (libc, -lc)
SYNOPSIS
#include <fcntl.h>
int open(const char *pathname, int flags, ...
/* mode_t mode */ );
int creat(const char *pathname, mode_t mode);
int openat(int dirfd, const char *pathname, int flags, ...
/* mode_t mode */ );
/* Documented separately, in openat2(2): */
int openat2(int dirfd, const char *pathname,
const struct open_how *how, size_t size);
Manual page open(2) line 1 (press h for help or q to quit)