Skip to content

Instantly share code, notes, and snippets.

@ondrej-kvasnovsky
Created November 21, 2018 16:52
Show Gist options
  • Save ondrej-kvasnovsky/6e28b8361cd51ae0b02fd7a3885771ac to your computer and use it in GitHub Desktop.
Save ondrej-kvasnovsky/6e28b8361cd51ae0b02fd7a3885771ac to your computer and use it in GitHub Desktop.
Search all files in give directory
#! /bin/sh -
# that also works in any sh, so you don't even need to have or use bash
file_pattern="/Users/ondrej/Downloads/emails/*.dms"
# all uppercase variables should be reserved for environment variables
IFS='' # disable splitting
for f in $file_pattern # here we're not quoting the variable so
# we're invoking the split+glob operator.
do
printf '%s\n' "$f"
cat '%s\n' "$f" | grep 'From:'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment