Skip to content

Instantly share code, notes, and snippets.

@jaimevalero
Last active May 13, 2023 00:29
Show Gist options
  • Save jaimevalero/3db5c5753373b37d1e687700d2039b07 to your computer and use it in GitHub Desktop.
Save jaimevalero/3db5c5753373b37d1e687700d2039b07 to your computer and use it in GitHub Desktop.
Which awesome resource has more awesomess in an awesome list
# Order an awesome list by number stars.
#
# Tis one liner scripts extracts the number of stars from each repo from a given awesome list, and order repos by the number of start
# This one liner uses jq command, so you should have it installed in your machine
# Parameter
# Awesome List to extract, in raw
AWESOME_LIST=https://raw.githubusercontent.com/pditommaso/awesome-pipeline/master/README.md
#CREDENTIALS="jaimevalero:mysecret"
CREDENTIALS="replace-for-your-github-user:replace-for-your-github-password"
curl -L --user "$CREDENTIALS" -s "$AWESOME_LIST" | \
egrep -E -o 'https://github.com/.*/.*\)' | \
cut -d\/ -f 4-5 | cut -d\) -f1 | \
while read line ; do \
echo "[$line](https://github.com/$line)" \| \
`curl --user "$CREDENTIALS" -s -L -k "https://api.github.com/repos/$line" | \
jq -c '[ .stargazers_count ,"ยบ" , .description , "ยบ"] ' | \
tr -d '\[' | tr -d '\]' | tr -d ',' | tr -d '\"' | tr -d '\|' | tr 'ยบ' '|' `; \
done | sort -r -u -t \| -k2 -n | sed -e 's/^/\|/g' | sed -e 's@||@|@g'
@jaimevalero
Copy link
Author

jaimevalero commented Feb 17, 2018

For https://github.com/agarrharr/awesome-cli-apps

Repo Stars Description
sindresorhus/awesome 139063 ๐Ÿ˜Ž Awesome lists about all kinds of interesting topics
ytdl-org/youtube-dl 69948 Command-line program to download videos from YouTube.com and other video sites
nvbn/thefuck 54880 Magnificent app which corrects your previous console command.
jkbrzt/httpie 47885 As easy as /aitch-tee-tee-pie/ ๐Ÿฅง Modern user-friendly command-line HTTP client for the API era. JSON support colors sessions downloads plugins & more. https://twitter.com/clihttp
neovim/neovim 38149 Vim-fork focused on extensibility and usability
sindresorhus/awesome-nodejs#command-line-apps 36866 โšก Delightful Node.js packages and resources
junegunn/fzf 31337 ๐ŸŒธ A command-line fuzzy finder
tldr-pages/tldr 28113 ๐Ÿ“š Collaborative cheatsheets for console commands
herrbischoff/awesome-macos-command-line#readme 23801 Use your macOS terminal shell to do awesome things.
ncw/rclone 22978 \rsync for cloud storage\ - Google Drive Amazon Drive S3 Dropbox Backblaze B2 One Drive Swift Hubic Cloudfiles Google Cloud Storage Yandex Files
sharkdp/bat 22248 A cat(1) clone with wings.
BurntSushi/ripgrep 21244 ripgrep recursively searches directories for a regex pattern
vim/vim 21053 The official Vim repository
tatsuhiro-t/aria2 20725 aria2 is a lightweight multi-protocol & multi-source cross platform download utility operated in command-line. It supports HTTP/HTTPS FTP SFTP BitTorrent and Metalink.
github/hub 20120 A command-line tool that makes git easier to use with GitHub.
alebcay/awesome-shell#readme 19898 A curated list of awesome command-line frameworks toolkits guides and gizmos. Inspired by awesome-php.
stedolan/jq 17580 Command-line JSON processor
jesseduffield/lazydocker 16028 The lazier way to manage everything docker
zyedidia/micro 14792 A modern and intuitive terminal-based text editor
sharkdp/fd 14666 A simple fast and user-friendly alternative to 'find'
svg/svgo 14655 ๐Ÿฏ Node.js tool for optimizing SVG files
yudai/gotty 14325 Share your terminal as a web application
tj/git-extras 14198 GIT utilities -- repo summary repl changelog population author commit percentages and more
audreyr/cookiecutter 12640 A command-line utility that creates projects from cookiecutters (project templates) e.g. Python package projects VueJS projects.
rupa/z 12123 z - jump around
wting/autojump 11572 A cd command that learns - easily navigate directories from the command line
ogham/exa 10538 A modern version of โ€˜lsโ€™.
localtunnel/localtunnel 10260 expose yourself
aws/aws-cli 9973 Universal Command Line Interface for Amazon Web Services
sivel/speedtest-cli 9965 Command line interface for testing internet bandwidth using speedtest.net
antonmedv/fx 9814 Command-line tool and terminal JSON viewer ๐Ÿ”ฅ
beetbox/beets 9538 music library manager and MusicBrainz tagger
dylanaraps/neofetch 9405 ๐Ÿ–ผ๏ธ A command-line system information tool written in bash 3.2+
k4m4/terminals-are-sexy#readme 9322 ๐Ÿ’ฅ A curated list of Terminal frameworks plugins & resources for CLI lovers.
jonas/tig 9260 Text-mode interface for git
jarun/nnn 8920 n
dbcli/pgcli 8878 Postgres CLI with autocompletion and syntax highlighting
dbcli/mycli 8863 A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
gleitz/howdoi 8381 instant coding answers via the command line
asciinema/asciinema 8362 Terminal session recorder ๐Ÿ“น
unixorn/awesome-zsh-plugins#readme 8130 A collection of ZSH frameworks plugins themes and tutorials.
ranger/ranger 8095 A VIM-inspired filemanager for the console
eliangcs/http-prompt 7890 An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete syntax highlighting and more. https://twitter.com/clihttp
klaussinani/taskbook 7723 Tasks boards & notes for the command-line habitat
kefranabg/readme-md-generator 7681 ๐Ÿ“„ CLI that generates beautiful README.md files
denisidoro/navi 7584 An interactive cheatsheet tool for the command-line and application launchers
kamranahmedse/git-standup 6713 Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)
cyrus-and/gdb-dashboard 6644 Modular visual interface for GDB in Python
schachmat/wego 6429 weather app for the terminal
Rigellute/spotify-tui 6350 Spotify for the terminal written in Rust ๐Ÿš€
mps-youtube/mps-youtube 6317 Terminal based YouTube player and downloader
mawww/kakoune 6210 mawww's experiment for a better code editor
sindresorhus/fkill-cli 6128 Fabulously kill processes. Cross-platform.
zeit/serve 6070 Static file serving and directory listing
imsnif/bandwhich 5676 Terminal bandwidth utilization tool
tjunnone/npm-check-updates 5595 Find newer versions of package dependencies than what your package.json allows
IonicaBizau/git-stats 5412 ๐Ÿ€ Local git statistics including GitHub-like contributions calendars.
sindresorhus/np 5410 A better npm publish
santinic/how2 5273 stackoverflow from the terminal
clvv/fasd 5114 Command-line productivity booster offers quick access to files and directories inspired by autojump z and v.
akavel/up 5025 Ultimate Plumber is a tool for writing Linux pipes with instant live preview
streamlink/streamlink 5019 Streamlink is a CLI utility which pipes video streams from various services into a video player
timvisee/ffsend 4947 ๐Ÿ“ฌ Easily and securely share files from the command line. A fully featured Firefox Send client.
joeyespo/grip 4803 Preview GitHub README.md files locally before committing them.
rastapasta/mapscii 4670 ?
mixn/carbon-now-cli 4658 ๐ŸŽจ Beautiful images of your code โ€” from right inside your terminal.
jarun/googler 4614 ๐Ÿ” Google from the terminal
donnemartin/saws 4565 A supercharged AWS command line interface (CLI).
facebook/pathpicker 4442 PathPicker accepts a wide range of input -- output from git commands grep results searches -- pretty much anything.After parsing the input PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands.
dylanaraps/pywal 4337 ๐ŸŽจ Generate and change color-schemes on the fly.
soimort/translate-shell 4331 ๐Ÿ’ฌ Command-line translator using Google Translate Bing Translator Yandex.Translate etc.
Canop/broot 4281 A new way to see and navigate directory trees : https://dystroy.org/broot
wp-cli/wp-cli 4201 โš™๏ธ WP-CLI framework
busyloop/lolcat 4170 Rainbows and unicorns!
cmus/cmus 3856 Small fast and powerful console music player for Unix-like operating systems.
visit1985/mdp 3814 A command-line based markdown presentation tool.
jarun/Buku 3808 ๐Ÿ”– Browser-independent bookmark manager
rgburke/grv 3700 GRV is a terminal interface for viewing git repositories
mjswensen/themer 3688 ๐ŸŽจ themer takes a set of colors and generates themes for your apps (editors terminals wallpapers and more).
wooorm/alex 3649 Catch insensitive inconsiderate writing
s3tools/s3cmd 3401 Official s3cmd repo -- Command line tool for managing Amazon S3 and CloudFront services
icholy/ttygif 3383 Convert terminal recordings to animated gifs
webpro/release-it 3374 ๐Ÿš€ Automate versioning and package publishing
sindresorhus/speed-test 3372 Test your internet connection speed and ping using speedtest.net from the CLI
shobrook/rebound 3261 Command-line tool that instantly fetches Stack Overflow results when an exception is thrown
DTVD/rainbowstream 3168 A smart and nice Twitter client on terminal written in Python.
chjj/ttystudio 3166 A terminal-to-gif recorder minus the headaches.
yeoman/yo 3130 CLI tool for running Yeoman generators
thlorenz/doctoc 3070 ๐Ÿ“œ Generates table of contents for markdown files inside local git repository. Links are compatible with anchors generated by github or other sites.
zeit/release 2941 Generate changelogs with a single command
sharkdp/pastel 2940 A command-line tool to generate analyze convert and manipulate colors
dylanaraps/fff 2922 ๐Ÿ“ A simple file manager written in bash.
herrbischoff/awesome-command-line-apps#readme 2843 ๐Ÿš Use your terminal shell to do awesome things.
yaronn/wopr 2794 A simple markup language for creating rich terminal reports presentations and infographics
lirantal/dockly 2661 Immersive terminal interface for managing docker containers and services
emacs-mirror/emacs 2573 Mirror of GNU Emacs
carloscuesta/gitmoji-cli 2406 A gitmoji interactive command line tool for using emojis on commits. ๐Ÿ’ป
gokcehan/lf 2380 Terminal file manager
kohler/gifsicle 2289 Create manipulate and optimize GIF images and animations
insanum/gcalcli 2239 Google Calendar Command Line Interface
irssi/irssi 2205 The client of the future
clangen/musikcube 2076 a cross-platform terminal-based music player audio engine metadata indexer and server in c++
VitaliyRodnenko/geeknote 2065 Console client for Evernote.
sobolevn/git-secret 2046 ๐Ÿ‘ฅ A bash-tool to store your private data inside a git repository.
Azure/azure-cli 2014 Azure Command-Line Interface
sindresorhus/emoj 2010 Find relevant emoji from text on the command-line ๐Ÿ˜ฎ โœจ ๐Ÿ™Œ ๐Ÿด ๐Ÿ’ฅ ๐Ÿ™ˆ
alexfernandez/loadtest 1938 Runs a load test on the selected URL. Easy to extend minimally for your own ends.
kurolabs/stegcloak 1841 Hide secrets with invisible characters in plain text securely using passwords ๐Ÿง™๐Ÿปโ€โ™‚๏ธโญ
dnote/dnote 1824 A simple command line notebook for programmers
hlandau/acme 1786 ๐Ÿ”’ acmetool an automatic certificate acquisition tool for ACME (Let's Encrypt)
zquestz/s 1750 Open a web search in your terminal.
jhspetersson/fselect 1718 Find files with SQL-like queries
skywind3000/z.lua 1695 โšก A new cd command that helps you navigate faster by learning your habits (ๅธฆๅญฆไน ๅŠŸ่ƒฝ็š„ๅฟซ้€Ÿ่ทฏๅพ„ๅˆ‡ๆขๅทฅๅ…ท)
ddopson/underscore-cli 1634 Command-line utility-belt for hacking JSON and Javascript.
astefanutti/decktape 1617 PDF exporter for HTML presentations
miguelmota/cointop 1549 A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies
TailorDev/Watson 1539 โŒš A wonderful CLI to track your time!
spolu/warp 1500 Secure and simple terminal sharing
Treri/cmatrix 1476 Terminal based \The Matrix\ like implementation
pimutils/khal 1472 ๐Ÿ“† CLI calendar application
sgentle/caniuse-cmd 1448 Caniuse command line tool
axiros/terminal_markdown_viewer 1376 Styled Terminal Markdown Viewer
ajeetdsouza/zoxide 1352 A faster way to navigate your filesystem
yask123/Instant-Music-Downloader 1318 ๐ŸŽท Downloads Music From The Web
sindresorhus/pageres-cli 1305 Capture website screenshots
MidnightCommander/mc 1262 Midnight Commander's repository
pipeseroni/pipes.sh 1231 Animated pipes terminal screensaver
stevemao/awesome-git-addons#readme 1228 ๐Ÿ˜Ž A curated list of add-ons that extend/enhance the git CLI.
newsboat/newsboat 1222 An RSS/Atom feed reader for text terminals
kislyuk/yq 1215 Command-line YAML and XML processor - jq wrapper for YAML/XML documents
laixintao/iredis 1176 Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.
MusicPlayerDaemon/MPD 1157 Music Player Daemon
tmrts/boilr 1148 โšก boilerplate template manager that generates files or directories from template repositories
samg/timetrap 1131 Simple command line timetracker
jaebradley/uber-cli 1128 ๐Ÿš—Uber at your fingertips
golbin/git-commander 1062 A git tool with an easy terminal interface.
smallhadroncollider/taskell 998 Command-line Kanban board/task manager with support for Trello boards and GitHub projects
arybczak/ncmpcpp 989 Featureful ncurses based MPD client inspired by ncmpc
ManrajGrover/football-cli 983 โšฝ Command line interface for Hackers who love football
mptre/yank 947 Yank terminal output to clipboard
erkin/ponysay 944 Pony rewrite of cowsay.
ivanilves/xiringuito 943 SSH-based \VPN for poors|
cytopia/ffscreencast 888 ffscreencast - ffmpeg screencast/desktop-recording with video overlay and multi monitor support
ttscoff/doing 771 null
pimutils/vdirsyncer 758 ๐Ÿ“‡ Synchronize calendars and contacts.
nosarthur/gita 754 Manage many git repos with sanity ็†?
sindresorhus/trash-cli 742 Move files and folders to the trash
alichtman/stronghold 732 Easily configure macOS security settings from the terminal.
jarun/imgp 671 ๐Ÿ“ธ High-performance CLI batch image resizer & rotator
keepcosmos/terjira 666 Terjira is a very interactive and easy to use CLI tool for Jira.
agentofuser/ipfs-deploy 660 Zero-Config CLI to Deploy Static Websites to IPFS
xxczaki/oji 653 (โ—•โ€ฟโ—•) Text Emoticons Maker
alichtman/shallow-backup 644 Git-integrated backup tool for macOS and Linux devs.
iridakos/goto 627 Alias and navigate to directories with tab completion in Linux
clog-tool/clog-cli 616 Generate beautiful changelogs from your Git commit history
msoap/shell2http 613 Executing shell commands via HTTP server
djadmin/medium-cli 609 Medium for Hackers - ๐Ÿ’ป A CLI for Medium Stories.
feross/webtorrent-cli 566 WebTorrent the streaming torrent client. For the command line.
kimmobrunfeldt/chokidar-cli 554 Fast cross-platform cli utility to watch file system changes
himynameisdave/git-labelmaker 518 ๐ŸŽ Manage your GitHub labels from the command line!
captainsafia/legit 514 Add licenses to projects at the command line
sindresorhus/dark-mode 505 Control the macOS dark mode from the command-line
c0bra/deviceframe 504 ๐Ÿ“ฑ Put device frames around your mobile/web/progressive app screenshots.
wustho/epr 492 CLI Epub Reader
raine/ramda-cli 485 ๐Ÿ A CLI tool for processing data with functional pipelines
nanovms/ops 471 ops - build and run nanos unikernels
ddsol/speedtest.net 470 node.js SpeedTest.net client module
brandonweiss/discharge 464 โšก๏ธ A simple easy way to deploy static websites to Amazon S3.
mbostock/gistup 459 Create a gist from terminal then use git to update it.
dthree/wat 447 Instant central community-built docs
TejasQ/add-gitignore 435 An interactive CLI tool that adds a .gitignore to your projects.
rawnly/splash-cli 405 ๐Ÿ“ธ Beautiful wallpapers from Unsplash ๐Ÿ–ผ๏ธ๐Ÿ› ๏ธ
mischah/itunes-remote 402 ๐ŸŽถ Control iTunes via CLI
IonicaBizau/cli-github 400 ๐Ÿ˜ธ A fancy GitHub client for command line.
arvindch/pockyt 394 Automate & manage your Pocket.com collection.
diit/overtime-cli 389 Easy time-overlap tables for remote teams.
GothenburgBitFactory/timewarrior 386 Timewarrior - Commandline Time Reporting
lukechilds/gifgen 373 Simple high quality GIF encoding
julianhyde/sqlline 357 Shell for issuing SQL to relational databases via JDBC
mellowcandle/bitwise 349 Terminal based bit manipulator in ncurses
changyuheng/fz 334 Cli shell plugin the missing fuzzy tab completion feature of z jump around command.
specious/facebook-cli 333 ๐Ÿ’ป Facebook command line tool
insanum/sncli 313 Simplenote CLI
bnagy/cgasm 307 We're insanely passionate about command line asm documentation in the cloud and we're crushing it!
jarun/bcal 306 ๐Ÿ”ข Storage and regular CLI calculator
oysttyer/oysttyer 303 An interactive console text-based command-line Twitter client written in Perl
bevacqua/hget 294 ๐Ÿ‘ Render websites in plain text from your terminal
oguzhaninan/korkut 289 Quick and simple image processing at the command line. ๐Ÿ”จ
bntzio/wipe-modules 280 ๐Ÿ—‘๏ธ Easily remove the node_modules folder of non-active projects
sindresorhus/is-up-cli 269 Check whether a website is up or down
kdabir/has 265 โœ… checks presence of various command line tools and their versions on the path
rtfpessoa/diff2html-cli 262 Pretty diff to html javascript cli (diff2html-cli)
sindresorhus/kill-tabs 259 Kill all Chrome tabs to improve performance decrease battery usage and save memory
Trendyol/docker-shell 256 A simple interactive prompt for docker
ManrajGrover/organize-cli 250 ๐Ÿ“‹ Organize your files imagine cleaning up your downloads in an instant
sugyan/ttygif 239 ttyrec to gif
simeg/eureka 229 ๐Ÿ’ก CLI tool to input and store your ideas without leaving the terminal
sindresorhus/npm-name-cli 224 Check whether a package or organization name is available on npm
BibleJS/BibleApp 213 ๐Ÿ“– Bible.JS CLI client. Read the Holy Bible via the command line.
passy/givegif 210 GIFs on the command line
vishwanatharondekar/gitlab-cli 206 Create a merge request from command line in gitlab
frinyvonnick/gitmoji-changelog 200 A changelog generator for gitmoji ๐Ÿ˜œ
marionebl/share-cli 196 ๐ŸŒ Quickly share files from your command line
kevva/brightness-cli 180 Change the screen brightness
yeoman/yosay 179 Tell Yeoman what to say
sindresorhus/del-cli 177 Delete files and directories
NISH1001/playx 172 Search and play any song from terminal
albinekb/open-pip-cli 171 ?
sindresorhus/npm-home 170 Open the npm page Yarn page or GitHub repo of a package
aweary/alder 168 A minimal implementation of the UNIX tree command with colors!
lukechilds/htconvert 167 Convert .htaccess redirects to nginx.conf redirects
mingrammer/awesome-finder 165 ๐Ÿ˜Ž Search the awesome curated list without browser
iCHAIT/moviemon 160 ๐ŸŽฅ Everything about your movies within the command line.
IonicaBizau/idea 158 ๐Ÿ’ก A lightweight CLI tool and module for keeping ideas in a safe place quick and easy.
xxczaki/cash-cli 150 ๐Ÿ’ฐ๐Ÿ’ฐ Convert currency rates directly from your terminal!
sindresorhus/gzip-size-cli 147 Get the gzipped size of a file or stdin
tnalpgge/rank-amateur-cowsay 140 Fork me if you want to maintain cowsay.
larose/utt 138 Ultimate Time Tracker - A simple command-line time tracker written in Python
zaaack/foy 137 A simple light-weight and modern task runner for general purpose.
Angelmmiguel/pm 132 The easy way to switch between your projects on ZSH
cezaraugusto/mklicense 130 ๐Ÿ“‹ ๐ŸŽ‰ CLI tool for generating Licenses. Easily.
shlomif/fortune-mod 129 Implementation of the Unix fortune command for displaying a random quotation for Linux and other systems.
dduan/tre 123 Tree command improved.
lordgiotto/google-font-installer 119 Download and install Google Web Fonts on your local machine. Both CLI and API available.
eneserdogan/trino 116 Trino: Master your translations with command line!
thompsonemerson/moeda 112 ๐Ÿ’ฐ ๐Ÿ“ˆ A foreign exchange rates and currency conversion using CLI
metadelta/mdlt 107 A command-line utility for quick math.
deepjyoti30/QuickWall 106 Set latest wallpapers from Unsplash from the commandline
JPeer264/node-semantic-git-commit-cli 104 A CLI for semantic git commits
jamesgeorge007/scaffold-static 102 Scaffolding utility for vanilla-js
sindresorhus/sparkly-cli 97 Generate sparklines โ–โ–‚โ–ƒโ–…โ–‚โ–‡
darrikonn/td-cli 96 A todo command line todo manager โœ”๏ธ
sindresorhus/get-port-cli 94 Get an available port
mayankchd/movie 90 A CLI for getting information about movies and comparing two movies
omgimanerd/getnews.tech 88 A web server that fetches data from the News API and formats it for display in the terminal.
beatfreaker/text-meme-cli 86 Generate text meme
bogem/nehm 84 (DEPRECATED) โ˜๏ธ CLI for downloading tracks from SoundCloud
jhotmann/node-rename-cli 76 A tool for renaming files quickly especially multiple files at once.
rockymadden/somafm-cli 74 ๐ŸŽต Listen to SomaFM in your terminal via pure bash
sanity-io/groq-cli 68 Run GROQ in your command line
pandastrike/yaml-cli 65 A simple CLI for querying and updating YAML files
zupzup/calories 64 Calories Tracker for the Commandline
ImFeelingDucky/undollar 63 undollar eats the dollar sign in the command you just pasted into your terminal
sindresorhus/hasha-cli 57 Hashing made simple. Get the hash of text or stdin.
sindresorhus/file-type-cli 54 Detect the file type of a file or stdin
silverwind/updates 51 Flexible npm dependency update tool
riyadhalnur/quote-cli 48 Get a random quote or the quote of the day in your CLI
SamVerschueren/mobisplash-cli 47 Mobile app splash screen generator
IonicaBizau/birthday 46 ๐ŸŽ‚ Know when a friend's birthday is coming.
busyloop/vj 45 vj - JSON Humanizer
kevva/viewport-list-cli 44 Return a list of devices and their viewports
sunsations/speed_read 43 speed_read: A simple terminal-based open source Spritz-alike
kevva/imgur-uploader-cli 41 Upload images to imgur
sindresorhus/parse-columns-cli 40 Parse text columns like the output of unix commands. Returns JSON that you can manipulate with tools like jq or underscore-cli.
xxczaki/nasa-cli 38 ๐Ÿš€ Download NASA Picture of the Day from your terminal!
Duroktar/YuleLog 37 A terminal based Yule Log fireplace for all the kids in the corner with sweatpants.
specious/meetup-cli 36 ๐Ÿ• An easy way to keep track of upcoming Meetup events
specious/bitly-client 35 ๐Ÿ”— Create and manage your Bitly shortlinks from the command line
sindresorhus/strip-json-comments-cli 33 Strip comments from JSON. Lets you use comments in your JSON files!
yask123/AutoScreenshotUploader 32 Automagically captures the screenshot of the screen uploads in imgurl copies the url into clipboard deletes the created image file from your desktop
koraa/pipe_exec 31 Execute binaries from pipes stdin and ttys
sindresorhus/app-path-cli 30 Get the path to an app (macOS)
sindresorhus/strip-css-comments-cli 28 Strip comments from CSS
Camji55/googlr 27 Googlr is a command line tool that lets you search Google from your terminal.
sggts04/dankcli 25 CLI Image Captioning Tool or Meme Generator which automatically adds whitespace and text to top
snwfdhmp/simplehttp 24 Pretty simple and lightweight http server for serving local files.
therealklanni/jp 23 A tiny commandline tool for parsing JSON from any source.
antonmedv/ll 21 Opinionated ls rewrite in Go ๐Ÿงฆ
sindresorhus/find-up-cli 20 Find a file by walking up parent directories
sindresorhus/bundle-id-cli 19 Get bundle identifier from a bundle name (macOS): Safari โ†’ com.apple.Safari
dolsup/cli-fireplace 18 ๐ŸŽ‰Enjoy your ๐ŸŽChristmas๐ŸŽ… watching digital fireplace๐Ÿ”ฅ on your own terminal๐Ÿ–ฅ
sindresorhus/npm-user-cli 17 Get user info of an npm user
sindresorhus/to-single-quotes-cli 16 Convert matching double-quotes to single-quotes: I \love\ unicorns โ†’ I 'love' unicorns
sindresorhus/website-popup-cli 14 Open a website in a popup (macOS)
sindresorhus/osx-version-cli 13 Get the macOS version of the current system
beatfreaker/is-reachable-cli 12 Check if hostnames are reachable or not
roma-guru/ricksay 11 Rick & Morty quotes of the day with ponies included!
sindresorhus/pkg-dir-cli 10 Find the root directory of a Node.js project or npm package
italolelis/reachable 9 Reachable is a CLI tool to check if a domain is up
jackel27/jackpaper 8 null
drselump14/ipt 6 interactive pivotal tracker command line interface
kevva/lnfs-cli 4 Safely force create symlinks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment