: ########################################################################## # Shellscript: hls - special ls # Version : 0.1 (beta) # Author : Heiner Steven (heiner.steven@odn.de) # Date : 94/10/10 # Category : File Utilities # SCCS-Id. : $Id: hls,v 1.1.1.1 1999/06/15 19:29:05 heiner Exp $ ########################################################################## # Description # ########################################################################## LsOpt="-CF" if [ -t 1 ] then exec ls $LsOpt "$@" else exec ls "$@" fi