#!bin/sh

function lsd
{
  for i in `ls`; do
    if [ -d $i ]; then
      echo $i;
    fi;
  done;
}





