S&B Volcano vaporizer remote control with Pi Pico W
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- #!/bin/bash
-
- # https://github.com/beautify-web/js-beautify
-
- ROOT="https://app.storz-bickel.com"
- FILES=`curl -s $ROOT | grep "text/javascript" | grep -v "jquery" | grep -v "bootstrap" | sed 's/.*src="//g' | sed 's*"></script>**g'`
-
- for F in $FILES
- do
- N=`echo $F | sed 's*/*_*g'`
- O=`echo $N | sed 's/.js/.min.js/g'`
- curl -o $O $ROOT/$F
- js-beautify $O > $N
- done
|