5 lines
192 B
Bash
Executable File
5 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find /var/www/doesitsparkjoy.voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {}
|
|
find /var/www/voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {}
|