A cat(1) clone with wings.
https://github.com/sharkdp/bat
1,426 forks.
56,245 stars.
330 open issues.
Recent commits:
Tag: command line
-
jq
jq is a lightweight and flexible command-line JSON processor
Cookbook https://github.com/jqlang/jq/wiki/Cookbook
GitHub https://stedolan.github.io/jq/
-
git – duplicate a repo without forking
mkdir foo; cd foo # move to a scratch dir git clone --bare https://github.com/exampleuser/old-repository.git # Make a bare clone of the repository cd old-repository.git git push --mirror https://github.com/exampleuser/new-repository.git # Mirror-push to the new repository cd .. rm -rf old-repository.git # Remove our temporary local repository
-
q – Text as Data
q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).
q treats ordinary files as database tables, and supports all SQL constructs, such as WHERE, GROUP BY, JOINs etc. It supports automatic column name and column type detection, and provides full support for multiple encodings.
