#!/bin/bash

# this is our first example bash shell script
# 
# remember: you can make it executable (and protected from the group and
#     world) with the command:
# chmod 700 lab2script.sh
#
# remember: one way you can execute this script is by typing,
#     in the directory where it is,
# ./lab2script.sh
#     (OR type its relative pathname if you are in another directory)
#
# by: Sharon Tuttle
# last modified: 8-29-12

echo -e "\nLOOK! HERE ARE the current files...\n"
ls

echo -e "\nLOOK! here is my quota (if any)\n"
quota

echo -e "\nLOOK! here is my present working directory"
pwd