Promptles
Automation & Scripting

Script

beginner

Definition

A file containing a sequence of instructions that a computer runs from top to bottom. Unlike interactive programs, scripts typically run without user input. You start them and they do their thing. They're the backbone of automation.

In the wild

A deploy.sh script might: 1) run tests, 2) build the project, 3) upload files to the server, 4) restart the app. One command kicks off all four steps instead of doing each by hand.

More from Automation & Scripting