Shell / Commands

Shell Script

English

Overview

A script that lists out commands to automate a sequence of tasks.

Details

A script file made up of shell commands so a sequence of tasks can be run together. It's conventional to specify the interpreter to use via a shebang on the first line. Running it requires either granting execute permission (chmod +x) or explicitly invoking the interpreter, as in 'bash script.sh'.

More Linux terms