Skip to content

Man Page Cheat Sheet

homepage-banner

What are Manual Pages?

Manual pages are an invaluable resource for anyone working with Linux, Unix, or FreeBSD systems. They provide comprehensive documentation and guidance on various commands, system calls, and configuration files. By taking the time to explore and understand the manual pages, you can unlock the full potential of these operating systems and become a more proficient user. So, next time you find yourself in need of information, don’t hesitate to turn to the trusty manual pages.

tldr

The tldr pages are a community effort to simplify the beloved man pages with practical examples.

tldr disown
  disown

  Allow sub-processes to live beyond the shell that they are attached to.
  See also the `jobs` command.
  More information: https://www.gnu.org/software/bash/manual/bash.html#index-disown.

  - Disown the current job:
    disown

  - Disown a specific job:
    disown %job_number

  - Disown all jobs:
    disown -a

  - Keep job (do not disown it), but mark it so that no future SIGHUP is received on shell exit:
    disown -h %job_number

cht.sh

curl cheat.sh/tar
curl cht.sh/curl
curl https://cheat.sh/rsync
curl https://cht.sh/tr

Others

  • https://tldr.sh
  • cht.sh
  • cheat.sh

Reference

  • Arch manual pages (https://man.archlinux.org/)
  • man7.org (https://man7.org/linux/man-pages/index.html)
  • manned.org (https://manned.org/)
  • linux.die.net (https://linux.die.net/man/)
  • man.cx (https://man.cx/)
  • Debian man pages (https://manpages.debian.org/)
  • Ubuntu man pages (https://manpages.ubuntu.com/)
  • DragonFlyBSD man pages (https://leaf.dragonflybsd.org/cgi/web-man)
  • FreeBSD man pages (https://www.freebsd.org/cgi/man.cgi)
  • NetBSD man pages (https://man.netbsd.org/)
  • OpenBSD man pages (https://man.openbsd.org/)
  • Plan 9 Manual — Volume 1 (http://man.cat-v.org/plan_9/)
  • Inferno Manual — Volume 1 (http://man.cat-v.org/inferno/)
  • The UNIX and Linux forums man page repository (https://www.unix.com/man-page-repository.php)
Leave a message