Questions tagged [manpage]

Man pages are the documentation pages that come preinstalled with almost all substantial Unix and Unix-like operating systems

https://en.wikipedia.org/wiki/Man_page

486 questions
0
votes
1 answer

How can I use wait() as a non-blocking command in Unix?

From the wait() man page The wait() system call suspends execution of the calling thread until one of its children terminates. Regarding why to use wait(), it says In the case of a terminated child, performing a wait allows the system to…
KharoBangdo
  • 321
  • 5
  • 14
0
votes
1 answer

Reaching correct man page

When I type 'man read' on shell prompt it displays read shell command, how do I open documentation for read() C function. My question is not just for read applies to similar other functions like sleep() I usually run to https://linux.die.net when it…
Pras
  • 4,047
  • 10
  • 20
0
votes
1 answer

There's no IPVLAN option in systemd.network man page

I read systemd.network man page, there is no IPVLAN option in [Network] section. https://www.freedesktop.org/software/systemd/man/systemd.network.html However I used that option in .network file, It works! Is it accidentally omitted? my simple…
R00T3D
  • 65
  • 4
0
votes
1 answer

Make Xcode treat man pages like doc sets?

Working with--for example--OpenGL, say I need to get documentation for glEnable(). Double-click, copy, Help->Open man Page..., paste, enter works, but... Is there a way to make Xcode treat man pages like doc sets, so that option-double-clicking on a…
andyvn22
  • 14,696
  • 1
  • 52
  • 74
0
votes
0 answers

How many zeros should I put in the front to represent octal number?

The following description is from man 2 open in linux system. Sometimes they put two zeros and sometimes three in the front. But I think one zero is good enough. What's the idea behind this? S_IRWXU 00700 user (file owner) has read,…
K.Miao
  • 811
  • 7
  • 21
0
votes
1 answer

How to install man on Heroku

My app needs the package: man, but by default it's not installed on the heroku/nodejs buildpack. So according to the documentation, heroku/heroku-buildpack-apt is the tool for the job when your app needs additional apt dependencies. I assigned the…
emersonthis
  • 32,822
  • 59
  • 210
  • 375
0
votes
1 answer

Opening a newly created man file in a text editor BASH

I've created a new groff file, now named junk-man.1.gz (as I've been asked to gzip file). How do I view the man file in gedit? I want to be able to view the man file as in all its presented glory, not the original groff code.
Chris Daly
  • 17
  • 3
0
votes
0 answers

How do I can find file system(like `/etc`) in `man` command

I want to know what is the role of etc in man command. but, does not find etc in man. $ man etc No manual entry for etc I am using CentOS. The details are below $ cat /etc/centos-release CentOS Linux release 7.3.1611 (Core) Thank you for reading!
asari-mtr
  • 529
  • 1
  • 5
  • 10
0
votes
2 answers

pod2man fails with expected text not a number

I am building a legacy version of openSSL to do some testing, but the build is failing. I have already fixed several things, but now have got a new one, the log is reporting that it fails when installing the man pages. created directory…
Wayne
  • 3,359
  • 3
  • 30
  • 50
0
votes
1 answer

debian linux gvfs-copy command not found

Background: I am trying to copy files from a raspberry pi 3 (raspbian jessie) to an Android phone connected as an mtp device. I want to do it over the command line so that I can write a script to automate it. If I try to use a simple cp command, I…
0
votes
1 answer

Literal empty line in pandoc manpage markdown

This markdown manpage: %frobnicator(3) # NAME **frobnicator** — frobnicates the frobs # OPTIONS **-a** *a*: the letter a \ **-b** *b*: the letter b \ \ **-c** *c*: the letter c \ renders (pandoc -s --to=man frobnicator.md |PAGER=cat man…
Petr Skocik
  • 58,047
  • 6
  • 95
  • 142
0
votes
0 answers

Changing font size in groff does nothing

I have an unordered list defined in groff, but the system I'm on can't render the unicode bullet character, so I wanted to use a small o, and I've tried to use \s-2 to decrease the typesize by two, yet, when I open said file with man, the o doesn't…
Alexej Magura
  • 4,833
  • 3
  • 26
  • 40
0
votes
1 answer

Linux man command about [OPTIONS]

Let's say git add command.When I input man git add,I get its page. SYNOPSIS git add [--verbose | -v] [--dry-run | -n] [--force | -f] [--interactive | -i] [--patch | -p] [--edit | -e] [--[no-]all | --[no-]ignore-removal | [--update…
user6796845
0
votes
1 answer

Writing portable man pages

If I want to write man pages which are portable between different Unix-like systems, which source language standard should I use? Or can I simply assume that GNU troff (groff) is available everywhere?
August Karlstrom
  • 10,773
  • 7
  • 38
  • 60
0
votes
2 answers

Diacritical marks in man pages

I have written a man page in the nroff syntax. The text is in English but I want to make sure that a name containing the character "ö" is displayed correctly (even on a non-UTF-8 system). Is there a way to specify this character in nroff, similar to…
August Karlstrom
  • 10,773
  • 7
  • 38
  • 60