#!/bin/bash
# COMP 198  Spring 2026
# bash7a.sh
# Display contents of current directory backwards; quick-n-dirty
ls | sort -r
