83 private links
Same rough functionality as entr - watch for filechanges from the commandline. But with a server/client interface and afaik possibility to invoke programmatically.
Provides the virtual windows management interface that tmux/screen do.
Does explicitly not do anything like session management, for that it recommends using abduco or similar programs like dtach.
Simple session management allowing to detach from a current session.
Does explicitly not emulate the virtual window system of screen/tmux.
Allows writing commandline arguments as if you're in a shell script, but from javascript.
Somewhat similar to execa, but afaik tries to implement its own cross-platform coreutil commands. Has quick $
based syntax by default:
import { $ } from "bun";
const response = await fetch("https://example.com");
// Use Response as stdin.
await $`echo < ${response} > wc -c`; // 120
Simple commandline process execution with javascript. Takes care of stdin/stdout/stderr transformations, termination, newlines, child processes and so on.
A smarter shell and scripting environment with advanced features designed for usability, safety and productivity.
Soomewhat like nushell in that it can easily open (i.e. wget/curl) APIs and web pages, parse structured data (e.g. TOML, YAML, JSON) and work with the variables.
But also somewhat different in that it does not want to take over the rest of the coreutils/shell builtins, and as far as I understand strives to work alongside the traditional shell (e.g. using it mostly for scripting while ignoring it for repl use or whatever your use case is). Also not taking a(n almost) strictly functional approach like nushell.
Not sure how mature it is yet, have not extensively tried it out.
Cross-platform Rust rewrite of the GNU coreutils.
Simply intends to have complete compatibility with original coreutils - strives to fully pass the GNU coreutils test suite.
Flac splitting guide using cuetools (and shntool). Works wonderfully and easy to split, or convert, and tag with two commands.
Shows how to do lazy/non-greedy matching in ripgrep.
Simple video thumbnailing program - pretty fast and efficient, has lots of cmdline options but works 'good enough' by just invoking it.
Uses ffmpeg under the hood.
A cli wrapper combining git and dvs. Instead of doing first dvc commit
then git commit
then individual pushes you can just do it with one fds commit
.
Similarly with fds status
which is probably the most used command - get a quick at-a-glance overview of current project status for both data and code.
By being built as a wrapper it of course still allows delving into the individual programs for more advanced operations. Pretty clever, actually!
Interactive, file-level Time Machine-like tool for ZFS/btrfs/nilfs2 (and even actual Time Machine backups!)
Very cool, allows listing, filtering and browsing through backed-up individual files on the commandlien.
This article selects 100 TUI apps that largely reflects software our volunteers use as their daily drivers. Free and open source.
(Mostly TUI software, with some really interesting and lesser known software)
Terminal slide presentations. Uses its own markup language (unfortunately) but by doing so comes with some nice features such as emulating a shell command or even typing it with animation.
Yet Another.. zi? I don't know what the title stands for but I do know it like a pretty fast and smooth TUI fm.
A jq clone focussed on correctness, speed, and simplicity
jq in a different dress. As far as I can see the syntax is esentially the same but it is faster and wants to be 'correct'. Neat!
JSON Stream Editor (command line utility).
Another similar-but-different query language based tool to jq - just with what seems like much simpler syntax at least for simple queries.
Not sure how well it fares for more advanced requirements, but it might just do fine.
jq for binary formats - tool, language and decoders for working with binary and text formats
I suppose the description says it all. There are some usage examples on the README.md and they look avery intriguing - basically exploring an mp3 file kinda like through a hexdump/hexviewer but with jq-like query language built in
Update multiple repositories in with one command.
Similar to git-xargs but seems to work for repositories not hosted on Github. Takes any kind of script and applies it to all repositories you pass in. Very nice! Only the name is a bit worse.