Skip to content

Instantly share code, notes, and snippets.

@tiagovizoto
Created June 22, 2016 20:00
Show Gist options
  • Save tiagovizoto/e0917b51c26aab8d9656250765198262 to your computer and use it in GitHub Desktop.
Save tiagovizoto/e0917b51c26aab8d9656250765198262 to your computer and use it in GitHub Desktop.
50_linhas.sh
#!/bin/bash
read -p "Digite o caminho do arquivo: " CAMINHO
while [ 1 = 1 ]
do
DATA=$(date)
if [ "$(cat $CAMINHO | wc -l)" -ge 50 ]
then
echo " $DATA O Arquivo $CAMINHO passou de 50 linhas">>/home/mago/linhas.log
break
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment