Skip to content

Instantly share code, notes, and snippets.

@aonemd
Last active February 18, 2016 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aonemd/89574ce24f22d59799ae to your computer and use it in GitHub Desktop.
Save aonemd/89574ce24f22d59799ae to your computer and use it in GitHub Desktop.
Count how many words from different input sources
#!/bin/bash
# Usage: ./how_many_words.sh "word1|word2" "inputpath" "input type"
# Words separated by |
Words="$1"
InputPath="$2"
InputType="$3"
TempOutputPath="outttemp.txt"
# If it's a pdf file
if [ "$InputType" == "pdf" ] || [ "$InputType" == "PDF" ]
then
pdftotext -layout "$InputPath" "$TempOutputPath"
InputPath="$TempOutputPath"
fi
# If it's a URL
if [ "$InputType" == "url" ] || [ "$InputType" == "URL" ]
then
curl "$InputPath" >| "$TempOutputPath"
InputPath="$TempOutputPath"
fi
# Compute number of occurrences of each word
grep -E -i -w -c "$Words" "$InputPath"
# Remove temporary output file
rm -f "$TempOutputPath"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment