پکیجی هست به اسم tldr که میشه بجای man ازش استفاده کرد. کاملا جای اونو نمیگیره.
وقتی ازش استفاده میکنید و مثلا tldr python رو میزنید یه درخواست به سرور خودش میفرسته و یسری مثال از استفاده های پایتون رو بهتون نشون میده.
یکمی طول میکشه تا بخواد موارد رو نشون بده. توضیح خاصی نمیده فقط مثال هایی از استفاده پکیج رو نشون میده.
برای همه پکیج ها کار نمیکنه چون کسی برای اون پکیح tldr ننوشته.
با tldr -u میتونید اطلاعات همهی پکیج هایی که براشون tldr نوشته شده رو دریافت کنید و دیگه نیازی نباشه منتظر بمونید تا از سرور دریافت کنه.
نمونه برای python و grep :
$ tldr python
python
Python language interpreter.
More information: https://www.python.org.
- Start a REPL (interactive shell):
python
- Execute a specific Python file:
python path/to/file.py
- Execute a specific Python file and start a REPL:
python -i path/to/file.py
- Execute a Python expression:
python -c "expression"
- Run the script of the specified library module:
python -m module arguments
- Install a package using `pip`:
python -m pip install package_name
- Interactively debug a Python script:
python -m pdb path/to/file.py
- Start the built-in HTTP server on port 8000 in the current directory:
python -m http.server
________________________________________________________________________________
________________________________________________________________________________
$ tldr grep
grep
Find patterns in files using regular expressions.
More information: https://www.gnu.org/software/grep/manual/grep.html.
- Search for a pattern within a file:
grep "search_pattern" path/to/file
- Search for an exact string (disables regular expressions):
grep --fixed-strings "exact_string" path/to/file
- Search for a pattern in all files recursively in a directory, showing line numbers of matches, ignoring binary files:
grep --recursive --line-number --binary-files=without-match "search_pattern" path/to/directory
- Use extended regular expressions (supports `?`, `+`, `{}`, `()` and `|`), in case-insensitive mode:
grep --extended-regexp --ignore-case "search_pattern" path/to/file
- Print 3 lines of context around, before, or after each match:
grep --context|before-context|after-context=3 "search_pattern" path/to/file
- Print file name and line number for each match:
grep --with-filename --line-number "search_pattern" path/to/file
- Search for lines matching a pattern, printing only the matched text:
grep --only-matching "search_pattern" path/to/file
- Search stdin for lines that do not match a pattern:
cat path/to/file | grep --invert-match "search_pattern"