forked from Deuxfleurs/garage
7 lines
120 B
Bash
7 lines
120 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for FILE in $(find target/debug/deps); do
|
||
|
curl -v localhost:3900/$FILE -X DELETE -H 'Host: garage'
|
||
|
done
|
||
|
|