Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ncrocfer/clf
Command line tool to search and view snippets in the terminal
https://github.com/ncrocfer/clf
Last synced: 6 days ago
JSON representation
Command line tool to search and view snippets in the terminal
- Host: GitHub
- URL: https://github.com/ncrocfer/clf
- Owner: ncrocfer
- License: mit
- Created: 2015-02-24T23:28:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-04T22:04:45.000Z (over 9 years ago)
- Last Synced: 2024-10-01T10:34:47.034Z (3 months ago)
- Language: Python
- Homepage:
- Size: 188 KB
- Stars: 348
- Watchers: 12
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
- my-awesome-starred - clf - Command line tool to search and view snippets in the terminal (Python)
README
clf - Command line tool to search snippets on Commandlinefu.com
===============================================================.. image:: https://travis-ci.org/ncrocfer/clf.svg?branch=master
:target: https://travis-ci.org/ncrocfer/clf`Commandlinefu.com `_ is the place to record awesome command-line snippets. This tool allows you to search and view the results into your terminal.
**Example 1**
.. code-block:: shell
$ clf python server
# python smtp server
python -m smtpd -n -c DebuggingServer localhost:1025# Python version 3: Serve current directory tree at http://$HOSTNAME:8000/
python -m http.server# Start a HTTP server which serves Python docs
pydoc -p 8888 & gnome-open http://localhost:8888# put current directory in LAN quickly
python -m SimpleHTTPServer**Example 2**
.. code-block:: shell
$ clf recursive line count
# Recursive Line Count
find ./ -not -type d | xargs wc -l | cut -c 1-8 | awk '{total += $1} END {print total}'# Recursive Line Count
find * -type f -not -name ".*" | xargs wc -l# Get Total Line Count Of All Files In Subdirectory (Recursive)
find . -type f -name "*.*" -exec cat {} > totalLines 2> /dev/null \; && wc -l totalLines && rm totalLines# Recursive Line Count
wc -l `find . -name *.php`Installation
------------The tool works with Python 2 and Python 3. It can be installed with `Pip` :
::
pip install clf
Usage
-----::
Command line tool to search snippets on Commandlinefu.com
Usage:
clf [options]
clf [options]
clf ... [options]
Options:
-h, --help Show this help.
-v, --version Show version.
-c, --color Enable colorized output.
-i, --id Show the snippets id.
-n NUMBER Show the n first snippets [default: 25].
--order=ORDER The order output (votes|date) [default: votes].
--proxy=PROXY The proxy used to perform requests.
Examples:
clf tar
clf python server
clf tar --proxy=http://127.0.0.1:8080
clf --order=date -n 3Notes
-----**Enable the colorized output**
You can set the :code:`CLF_COLOR` environment variable to enable the colorized output by default :
::
$ export CLF_COLOR=1
**Use clf in your scripts**
You can import the :code:`clf` module and use it in your own scripts :
.. code-block:: python
#!/usr/bin/env python
from clf import Clf
c = Clf()
for cmd in c.browse():
print("#{}\n{}\n".format(
cmd.summary,
cmd.command
))