#!/bin/bash
# @type: executable
# @requires: none
# @safe: yes
set -euo pipefail

# Exercise 1: Check the man page for the file passwd to find the name of the fifth field and why it has this name.
#
# Task: Use the man command to view the passwd file format documentation
# and identify what the fifth field represents.

man 5 passwd
