code - script - general - alias - a01_ff.a - Agilidad busqueda de archivos

  1. #!/usr/bin/bash
  2. #-------------------------------------------------------------------
  3. # Funciones Entornos Unix - Brqx Site - Brqx Org
  4. # Brqx Org - Rct - 2009
  5. #-------------------------------------------------------------------
  6. VERSION_SCRIPT="V 5.0" # Version del Script actual
  7. FECHA_SCRIPT="Junio 2009"
  8. #-------------------------------------------------------------------
  9. LEVEL_NIVEL=04
  10. CONCEPT_MOLDE="alias"
  11. CONCEPT_ARQUETIPO="busqueda"
  12. CONCEPT_LEVEL="Lista de $CONCEPT_MOLDE Comunes"
  13. #-==================================================================
  14. #+ Alias definidos:
  15. #-------------------------------------------------------------------
  16. #-- ff lfind
  17. #-------------------------------------------------------------------
  18.  
  19. #Find agil para las funciones
  20. #-------------------------------------------------------------------
  21. alias ff='find . -type f'
  22.  
  23. #Find agil para los enlaces
  24. #-------------------------------------------------------------------
  25. alias lfind=' find . -type l'