#!/bin/bash
#########################################################
# 							#
# This is BashStyle-NG 6.8				#
#							#
# Licensed under GNU LESSER GENERAL PUBLIC LICENSE v3	#
#							#
# Copyright 2007 - 2008 Christopher Bratusek		#
#							#
#########################################################

case $1 in
	*+h)
		ls --color=no -1 -la . | grep -v ^l | wc -l
	;;

	*-h)
		ls --color=no -1 -l . | grep -v ^l | wc -l
	;;
esac
