$ tail -f ~/blog | grep #cli
Posts filed under #cli.
2026-02-27 · 2 min read I got tired of looking up `rails new` flags, so I built a wizard for it Create Rails applications with an interactive CLI wizard that explains rails new options, remembers choices, saves presets, and shows the final command. # ruby · rails · cli · productivity 2014-08-12 · 2 min read How to partition and format a drive with GNU Parted Four commands in the parted shell are all it takes to repartition and format a drive on Linux: pick the disk from parted -l, create a gpt or msdos label, make one ext4 partition, and quit. # linux · devops · tutorial · cli 2013-09-27 · 1 min read Using unique option prefix pass instead of password is deprecated If MySQL or your cron logs suddenly started printing this warning, the culprit is most likely a shortened option name in your ~/.my.cnf. Here is the one-line fix. # mysql · devops · linux · cli