mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 04:15:54 +02:00
7 lines
240 B
Bash
7 lines
240 B
Bash
#!/bin/sh
|
|
|
|
./cscli -c dev.yaml list parser list -a -o json | jq -r ".[].name" > installed_parsers.txt
|
|
cat installed_parsers.txt | while read parser; do
|
|
echo "install ${parser}" ;
|
|
./cscli -c dev.yaml parsers install ${parser} ;
|
|
done
|