script

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash

ask_what_is_a_script() {
  echo "what even is a script?"
}

is_it_a_sequence() {
  echo "is it just a collection of commands"
  echo "that can be executed in sequence?"
}

or() {
  echo "or"
}

part_of_a_whole() {
  echo "is it just part of a whole"
  echo "that can be executed with frequence?"
}

main() {
  ask_what_is_a_script
  is_it_a_sequence
  or
  part_of_a_whole
}

main