Recipe

NL → bash one-liner

Turn natural language into a single-line bash command with zero ceremony.

Prompt

Write a bash one-liner that finds all .log files
modified in the last 7 days and prints their
names and sizes, sorted by size descending.

Output

find . -name "*.log" -mtime -7 \
  -printf "%s %p\n" | sort -rn

Notes

  • Be explicit about flags — Meridian guesses less when you specify -printf format.
  • Pipe chains work best when each stage does one thing.
  • For destructive commands, append --dry-run to the prompt.