#!/bin/sh
# mydir -- a quick hack dir command that puts directories first, then everything else
#          and pipes the resulting output into more
#    Donated by JMarsden

(ls -lhAF --color=always "$@" |egrep '^d|^total '; ls -lhA --color=always "$@" |egrep -v '^d|^total ') |more


#Old One
#ls -h -all --color=always $* | more

#Old One
#ls -h -all --color=always $1 $2 $3 $4 $5 $6 $7 $8 $9 | more
