Skip to content

Instantly share code, notes, and snippets.

@tiagovizoto
Created June 22, 2016 19:59
Show Gist options
  • Save tiagovizoto/f464303b08ff572f70e67bf73095278f to your computer and use it in GitHub Desktop.
Save tiagovizoto/f464303b08ff572f70e67bf73095278f to your computer and use it in GitHub Desktop.
#!/bin/bash
read -p "Digite o caminho do arquivo: " CAMINHO
while [ 1 = 1 ]
do
DATA=$(date)
if [ "$(du -s $CAMINHO | cut -f1)" -ge 10000 ]
then
echo " $DATA O Diretorio $CAMINHO passou dos 10M">>/home/mago/trabalho.log
break
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment