Browsing Tag
bash
105 posts
How to Create a Bash File Search Tool
If you’ve ever spent ten minutes clicking through folders trying to find a single file, you already know…
How to Create a Bash File Recovery Tool
Every sysadmin has that one story — the accidental rm -rf, the overwritten config file, the deleted directory…
How to Create a Bash File Decompression Tool
I can’t count how many times I’ve downloaded an archive and had to stop and think, “wait, is…
How to Create a Bash File Compression Tool
Compression is one of those things that feels simple until you actually need to do it well. Sure,…
How to Create a Bash File Sync Tool
I manage a handful of machines — a home server, a laptop, a couple of VPS instances —…
How to Create a Bash File Restore Tool
Backups are only half the story. I learned that the hard way once — I had a solid…
How to Create a Bash File Backup Tool
I’ve lost data exactly twice in my life, and both times it happened because I “meant to set…
How to Create a Bash File Diff Tool
I use diff constantly, but plain diff output has always felt a little unfriendly — walls of <…
How to Create a Bash File Finder
There’s a difference between “searching for a file by name” and what I’d call a proper file finder…
How to Create a Bash File Comparer
Diffing text files is one thing — I covered that in the Bash File Diff Tool article in…