All Projects → JIghtuse → Manpages Tldr

JIghtuse / Manpages Tldr

Licence: mit
Short, practical manpages for everyday usage

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Manpages Tldr

Tldr
Golang command line client for tldr https://github.com/tldr-pages/tldr
Stars: ✭ 210 (+94.44%)
Mutual labels:  tldr
tldr-flutter
simplified man-pages, a tldr.sh client
Stars: ✭ 65 (-39.81%)
Mutual labels:  tldr
Tldr
fast and interactive tldr client written with go
Stars: ✭ 984 (+811.11%)
Mutual labels:  tldr
tldr
Simplified and community-driven man pages (tldr-pages) in a single binary.
Stars: ✭ 33 (-69.44%)
Mutual labels:  tldr
tldr-php
PHP Client for tldr
Stars: ✭ 18 (-83.33%)
Mutual labels:  tldr
Tldr Python Client
Python command-line client for tldr pages
Stars: ✭ 317 (+193.52%)
Mutual labels:  tldr
Tachyons Tldr
quick lookup for tachyon classes, scales and colour palette
Stars: ✭ 170 (+57.41%)
Mutual labels:  tldr
Tealdeer
A very fast implementation of tldr in Rust.
Stars: ✭ 1,189 (+1000.93%)
Mutual labels:  tldr
alfred-tldr
tldr with alfred workflow written in Go
Stars: ✭ 77 (-28.7%)
Mutual labels:  tldr
Tldr
📚 Collaborative cheatsheets for console commands
Stars: ✭ 36,408 (+33611.11%)
Mutual labels:  tldr
TLDR.jl
A package for fast help and snippets
Stars: ✭ 16 (-85.19%)
Mutual labels:  tldr
red-tldr
red-tldr is a lightweight text search tool, which is used to help red team staff quickly find the commands and key points they want to execute, so it is more suitable for use by red team personnel with certain experience.
Stars: ✭ 159 (+47.22%)
Mutual labels:  tldr
Tldr Sh Client
Simplified and community-driven man pages
Stars: ✭ 583 (+439.81%)
Mutual labels:  tldr
Dilettantes-Guide-to-Linting
Setting up ESLint, Prettier, VS Code, and the AirBnB style guide in beautiful harmony.
Stars: ✭ 18 (-83.33%)
Mutual labels:  tldr
Tl
tldr for R!
Stars: ✭ 52 (-51.85%)
Mutual labels:  tldr
Tldr C Client
C command-line client for tldr pages
Stars: ✭ 180 (+66.67%)
Mutual labels:  tldr
Tldr Node Client
Node.js command-line client for tldr pages
Stars: ✭ 292 (+170.37%)
Mutual labels:  tldr
Tldr
Text summarizer for golang using LexRank
Stars: ✭ 92 (-14.81%)
Mutual labels:  tldr
Tldr Alfred
Alfred workflow for TLDR
Stars: ✭ 70 (-35.19%)
Mutual labels:  tldr
Cheat.sh
the only cheat sheet you need
Stars: ✭ 27,798 (+25638.89%)
Mutual labels:  tldr

manpages-tldr

Short, practical manpages for everyday usage

Description

This project aims to make fast-updated, practical and precise manpages with examples for everyday usage. It's an idea based on similar projects, like bropages and tldr, but written in format of real manpages (mostly converted from Markdown with pandoc).

Warning

manpages-tldr neither tries to replace original manpages nor compete with them. You must read real manpages. Use manpages-tldr only if you really have no time. If you note that some real manpage needs example, try to add it there.

Installation for current user

To install manpages to your home directory, run command like this:

MAN_DIR=$HOME/.local/share/man make install

Manpages will be installed to $HOME/.local/share/man/mant. Now you need to tell man command to look for manpages there. To do this, set environment variable MANPATH. If you need, you can do it in $HOME/.bashrc to avoid repeatedly setting this variable for all new terminal sessions.

export MANPATH=$HOME/.local/share/man:$MANPATH

Now you can use tldr manpages like this:

man -s tldr scp

You can add alias to your .bashrc file for easier usage:

echo "alias tldr='man -s tldr'" >> ~/.bashrc

After that, you will be able to use manpages-tldr like that:

tldr scp

System-wide installation

Run make install as root. Manpages will be installed to /usr/local/share/man/mant. Now you can use them like this:

man -s tldr scp

You can add alias to your .bashrc file for easier usage:

echo "alias tldr='man -s tldr'" >> ~/.bashrc

After that, you will be able to use manpages-tldr like that:

tldr scp

You can also use tools/thinpage.sh script to download and read some page without installation:

./tools/thinpage.sh scp

This command will download page from github to /tmp directory and open it in man pages reader.

CONTRIBUTING

Fork project, commit and push changes, send pull request. Please try to follow etiquette of good commit messages.

Example

After typing man -s tldr scp you will see usual manpage (see man -s tldr man for usage):

SCP(1)                                                                  SCP(1)



NAME
       scp  -  Copies  files  between hosts on a network.  Works over a secure
       connection (SSH).

EXAMPLES
       Upload a file.

              scp /local/file.txt 10.0.0.1:/remote/path/

       Upload and rename a file.

              scp /local/file.txt 10.0.0.1:/remote/path/newname.txt

       Download a file.

              scp 10.0.0.1:/remote/path/file.txt /local/folder

       Upload a directory.

              scp -r /local/folder 10.0.0.1:/remote/path/

       Download a directory.

              scp -r 10.0.0.1:/remote/path /local/folder

       Specify username on host.

              scp /local/file.txt [email protected]:/remote/path

       Copy a file from one host to another.

              scp 10.0.0.1:/remote/path/file.txt 20.0.0.2:/other/remote/path

AUTHORS
       Romain Prieto, Alexander Jegtnes, Boris Egorov.



manpages-tldr manuals             2014-02-02                            SCP(1)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].