Angenommen ich habe ein Script namens:
cleanup.sh
Ein Shell Skript.
Nun habe ich inotifywait und beobachte das Verzeichnis /tmp
Immer wenn dann ein Verzeichnis innerhalb von /tmp gelöscht wird, zum Beispiel:
/tmp/foo/
Möchte ich das cleanup.sh aufgerufen wird.
Weiss jemand von euch ob das mit inotifywait möglich ist?
inotifywait - kann man damit skripte ausführen?
Re: inotifywait - kann man damit skripte ausführen?
incron bietet sich vllt an.
Gibt auch noch was ähnliches was mir grad nicht einfällt
Gibt auch noch was ähnliches was mir grad nicht einfällt
Unix is user-friendly; it's just picky about who its friends are.
Re: inotifywait - kann man damit skripte ausführen?
Hallo,
probiere das mal aus:
Gruß M.
probiere das mal aus:
Code: Alles auswählen
#!/bin/bash
while inotifywait -e delete_self /tmp/bla/; do
./cleanup.sh
done