Tag: bash


  • linux find

    Write this up as a response to someone on hackernews but didn’t submit it. Dumping here for reference… search for exact pattern in all basenames find . -name “<pattern>” search for pattern at the start of basenames find . -name “<pattern>*” search for pattern at the end of basenames find . -name “*<pattern>” search for…

    Read This Post: linux find