Tag: Search

  • Find Command in Linux

    Find Command in Linux

    Find command in Linux Examples find /path/to/search -name *.txt Find text files in a specific directory find /path/to/search -name *.txt | grep -v .tmp Find text files in a specific directory also exclude temp files find . -name test -type d In the current directory find directory named test find . -name test -type f…