Skip to content

Instantly share code, notes, and snippets.

@maiquelleonel
Created April 12, 2018 02:42
Show Gist options
  • Select an option

  • Save maiquelleonel/a120ffa61763a63c9ccaedf08694b703 to your computer and use it in GitHub Desktop.

Select an option

Save maiquelleonel/a120ffa61763a63c9ccaedf08694b703 to your computer and use it in GitHub Desktop.
script para monitorar uma pasta
#!/bin/sh
inotifywait --recursive --monitor --quiet --event close_write --format '%f' /home/pi/Videos/ |
while read FILE ; do
reboot
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment