Promptles
Automation & Scripting

Dry Run

beginner

Definition

Running a script or command in preview mode so you can see what it would do without actually doing it. Dry runs are a safety net. They let you verify the plan before committing to changes that might be hard to undo.

In the wild

A database migration tool with a --dry-run flag shows 'Would rename column email to user_email in the users table' without actually changing anything. You review the output, and if it looks right, run it for real.

More from Automation & Scripting