#!/bin/sh
if [ -z $1 ]; then
  /bin/ls -l .
else
  /bin/ls -l "$1"
fi