#!/bin/bash

#clear the window
clear

#identify the path for the current directory
echo "the path to the current directory is `pwd`"

#print information on C programs,
#   in order of increasing size
echo
echo 'C programs, in ascending order of size:'
ls -l *.c | sort -n -k 5

#finish
echo
echo bash script is done!
