Fix rm command

This commit is contained in:
Luke Murphy 2020-02-19 22:30:10 +01:00
parent e0ee668728
commit bbec9048cb
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
find /var/www/doesitsparkjoy.voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs rm 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 rm find /var/www/voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {}