mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2024-11-22 08:01:02 +00:00
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
|
||
|
|