head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2011.11.22.10.38.54;	author dunc;	state Exp;
branches;
next	1.1;

1.1
date	99.10.20.05.27.01;	author dunc;	state Exp;
branches;
next	;


desc
@@


1.2
log
@grave elimination
@
text
@#!/bin/sh
#set -x
if [ -z "$1" ];then
  i=$PATH
else
  case $1 in
m*|M*)i=$MANPATH;;
l*|L*)i=$LD_LIBRARY_PATH;;
*)i=$PATH;;
  esac
fi
for j in $(echo $i|sed 'y/:/ /');do echo $j;done
@


1.1
log
@Initial revision
@
text
@d12 1
a12 1
for j in `echo $i|sed 'y/:/ /'`;do echo $j;done
@
