#!/bin/sh

# mlibrary
# Copyright (C) 2023 Joseph Rosevear



# Joseph Rosevear 230531 I wrote this script



# Definitions.
request="$1"

if [ "$request" = "" ]; then

   request="$lib"
fi

if [ "$request" = "" ]; then

   echo No directory.
   exit
fi

if ! cd "$request"; then

   echo Cannot change to $request.
   exit
fi

echo
echo processing directory: `pwd`

ls | dribble mcore
