3 lines
91 B
Bash
3 lines
91 B
Bash
#!/usr/local/bin/bash
|
|
|
|
for f in /www/perhost/*log; do /usr/bin/truncate -c -s 0 "$f"; done
|