Scripting

Command Line - Scripting #

A dump for scripting.

The simplest #

As simple as it gets.

#!/bin/bash

# a comment
echo 'Hello world!'

Then make it executable with chmod 755 <filename>. And execute with ./<filename>.