Skip to content

Instantly share code, notes, and snippets.

@franklinbr
Created February 20, 2013 13:40
Show Gist options
  • Save franklinbr/4995616 to your computer and use it in GitHub Desktop.
Save franklinbr/4995616 to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in $(cat bedi_dados.txt)
do
if [ $i -gt 5000 ]
then
echo $i "<-- manda email";
#mail bla bla bla bla
else
echo $i;
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment