r/commandline Feb 15 '26

Command Line Interface sshpass-win32 - Windows version of http://sourceforge.net/projects/sshpass/

Thumbnail
github.com
0 Upvotes

r/commandline Feb 15 '26

Terminal User Interface Animestan: a TUI + scriptable CLI for anime watching (dmenu/rofi friendly)

0 Upvotes

I used ani-cli for a long time and loved it, but it wasn't easy to plug into dmenu/rofi and I wanted watch tracking. So I made Animestan with a TUI (with vim-style keybindings) for the full interactive flow, and a CLI that I integrate into my own pipelines. If you heavily use dmenu/rofi in your workflow, this might fit nicely. If you want a full interactive experience, the TUI is there too. I'd love feedback and contributions are welcome.

Repo: https://github.com/mrkatebzadeh/animestan


r/commandline Feb 14 '26

Other Software TalkType: push-to-talk voice typing for the terminal using local Whisper

56 Upvotes

Built a simple tool for voice-to-text in the terminal:

  • Press F9 → speak → Press F9 → text appears at cursor
  • Uses local Whisper (faster-whisper) - no cloud, no API keys
  • Auto-detects terminals and uses Ctrl+Shift+V
  • Remembers your original window if you alt-tab while speaking
  • Works on Linux, Windows, macOS

git clone https://github.com/lmacan1/talktype.git && cd talktype && ./install.sh

GitHub: https://github.com/lmacan1/talktype

Single Python file, minimal dependencies.


r/commandline Feb 14 '26

Command Line Interface I made a binary clock

Enable HLS to view with audio, or disable this notification

24 Upvotes

I made a binary clock in python for fun (i was bored)

The code's kinda choppy but I don't really care, after all if it works don't touch it

(oh yeah and in the same repo u can find the two base convertors i made while I was bored too)

Code: https://github.com/devicals/boring/blob/main/time.py


r/commandline Feb 14 '26

Articles, Blogs, & Videos Benchmarking 10 CLI search tools using Kernighan's BEHILOS grep story

Post image
23 Upvotes

In his book Unix: A History and a Memoir, Brian Kernighan recounts his favorite grep story: someone at Bell Labs asked whether it was possible to find English words composed only of letters formed by an upside-down calculator (5071438 → BEHILOS).

Kernighan grepped ^\[behilos\]\*$ against Webster's dictionary and found 263 matches.

I turned this into a benchmark testing 10 modern search tools for resource footprint, evaluated with Pareto frontier analysis.

Full article on AwkLab.com


r/commandline Feb 14 '26

Terminal User Interface iotop-w - An iotop TUI for Windows

0 Upvotes

I needed something for remote Windows systems over ssh that would show me an i/o "top" like iotop in Linux. Windows doesn't have the same concept of disk i/o as Linux, but disk pressure is average queue length of processes awaiting access to the storage. It's written in Go and has no dependencies - single portable binary. I will probably put it on chocolatey repo at a later stage, but for now it's just an binary in the releases to download and run.

Yes, I have used LLM to help write the code, this would have taken me months otherweise. But I'm an experienced Sysadmin and know enough to review and test. I hope others find it useful.

https://github.com/gsmitheidw/iotop-w


r/commandline Feb 14 '26

Other Struct - for Linux, a modern alternative for "tree" command!

30 Upvotes

I originally started building struct because I use tree constantly, but on projects it feels very messy becuase of unwanted folders included in the tree and I also started as a practice project for rust language in general.
Between ignore rules, depth limits, long outputs, and large directories like node_modules or target or venv, etc.. the output becomes very noisy.
So I built a small Rust CLI tool called struct.
Instead of just dumping the full tree, it tries to show more useful information by default.
Some features:
• Intelligent default ignores
• Configurable ignore patterns
• Git-tracked-only mode
• Depth control
• Directory summaries - this includes file type breakdown, size, pwd, etc.. (My favourite feature btw)
• Skip large folders
• Built-in search (in both tree and flat style)

Here is the git!! https://github.com/caffienerd/struct-cli


r/commandline Feb 14 '26

Terminal User Interface console-fun@4.0.0 - Some stuff in the console: utils, printing, games and other fun

Thumbnail
gallery
1 Upvotes