#!/usr/bin/bash
#-------------------------------------------------------------------
# Funciones Entornos Unix - Brqx Site - Brqx Org
# Brqx Org - Rct - 2010
#-------------------------------------------------------------------
VERSION_SCRIPT="V 5.0" # Version del Script actual
FECHA_SCRIPT="Febrero 2010"
#-------------------------------------------------------------------
LEVEL_NIVEL=04
CONCEPT_CARACTER="common"
CONCEPT_MOLDE="funcion"
CONCEPT_ARQUETIPO="busqueda"
CONCEPT_LEVEL="Lista $CONCEPT_MOLDE ${CONCEPT_ARQUETIPO} ${CONCEPT_CARACTER}"
#-==================================================================
#+ Funciones definidos:
#-------------------------------------------------------------------
#-- fdep
#-------------------------------------------------------------------
#-==================================================================
#- Funcion de listado de carpetas usando profundidad superficial
fdep()
{
RUTA_MODULO=$1
FN_FDEP_SALIDA=`find ${RUTA_MODULO}/* -maxdepth 0 -type d`
}