for f in ./**/blog/*.md; do echo "--- $f ---"; head -n 2 "$f"; printf "...\n"; done
--- blog/elixir_c_node.md ---
We often read about the "BEAM magic"—concurrency, fault tolerance, and hot-code reloading. But let’s...