Skip to content

Commit

Permalink
Fix commandonaam
Browse files Browse the repository at this point in the history
  • Loading branch information
bertvv committed Nov 7, 2023
1 parent 03aa546 commit 1a23427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 06-scripting.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "6. Scripting"
title: "6. Scripting 103"
subtitle: "Linux<br/>HOGENT toegepaste informatica"
author: Thomas Parmentier, Andy Van Maele, Bert Van Vreckem
date: 2023-2024
Expand Down Expand Up @@ -87,7 +87,7 @@ Maak gebruiker `${user}` aan als die nog niet bestaat
```bash
if ! getent passwd "${user}" > /dev/null 2>&1; then
echo "Adding user ${user}"
adduser "${user}"
useradd "${user}"
else
echo "User ${user} already exists"
fi
Expand Down

0 comments on commit 1a23427

Please sign in to comment.