First page Back Continue Last page Summary Graphic

Find

  • Used to do operations on files throughout a directory hierarchy.
  • e.g.
  • ls
  • --> hello.h hello.c hello.sh
  • find . -name "*.[ch]" -print
  • --> hello.c
  • --> hello.h

    Notes: