#!/bin/bash # Function to check disk usage check_disk_usage() { echo "Disk Usage Information:" df -h } # Call the function check_disk_usage