Skip to content

Instantly share code, notes, and snippets.

@humus
Created October 6, 2013 01:56
Show Gist options
  • Select an option

  • Save humus/6848441 to your computer and use it in GitHub Desktop.

Select an option

Save humus/6848441 to your computer and use it in GitHub Desktop.
Encontrar archivos modificados en los últimos 40 segundos
#!/bin/bash
set -e
touch -d "40 seconds ago" reference.ignoreme
find . -type f -newer reference.ignoreme
rm reference.ignoreme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment