Skip to content

Commit

Permalink
Enkele verduidelijkingen toegevoegd
Browse files Browse the repository at this point in the history
  • Loading branch information
bertvv committed Nov 11, 2023
1 parent 87daec6 commit 919c129
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions 07-scripting-cronjobs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "7. Complexe scripts, cronjobs"
title: "7. Geavanceerde scripting 201, taken plannen"
subtitle: "Linux<br/>HOGENT toegepaste informatica"
author: Thomas Parmentier, Andy Van Maele, Bert Van Vreckem
date: 2023-2024
Expand Down Expand Up @@ -28,14 +28,16 @@ functie_naam() {
}
```

Een functie gedraagt zich als een script!
Een functie gedraagt zich als een commando!

- oproepen: `functie_naam arg1 arg2 arg3`
- positionele parameters: `${1}`, `${2}`, enz.
- `return STATUS` ipv `exit`

## Uitvoer opvangen: command substitution

Hoe kan je een functie een "waarde" laten teruggeven? Via `stdout`!

```bash
output=$(command arg1 arg2)
```
Expand Down Expand Up @@ -142,6 +144,8 @@ case EXPR in
esac
```

`PATROON` in globbing syntax! (`man 7 glob`)

## Case (2)

```bash
Expand All @@ -156,7 +160,7 @@ case "${option}" in
verbose=y
shift
;;
*)
-*)
printf 'Unrecognized option: %s\n' "${option}"
usage
exit 1
Expand Down

0 comments on commit 919c129

Please sign in to comment.