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

# Exercise 2: Use the ip route show command to display the system's current routing table. 
# Identify the default gateway and its associated metric.
#
# Task: Display routing table with gateway information.

ip route show
