11 lines
219 B
Bash
11 lines
219 B
Bash
#!/bin/sh
|
|
# /usr/local/bin/ ordner
|
|
|
|
|
|
|
|
# Löscht ind dateien..
|
|
find /volume1/TorrentInc/ -iname "*.torrent" -exec rm -r "{}" \;
|
|
find /volume1/TorrentInc/ -iname "*added" -exec rm -r "{}" \;
|
|
# rm -r /volume1/TorrentInc/*
|
|
|