mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
8 lines
201 B
Bash
Executable File
8 lines
201 B
Bash
Executable File
while docs=$(curl "localhost:3015/doc/list?limit=1000"); do
|
|
if [ -z "$docs" ] ; then break ; fi
|
|
for d in $docs ; do
|
|
echo "packing $d"
|
|
curl -X POST "localhost:3015/doc/$d/pack"
|
|
done
|
|
done
|