This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $url = 'https://api.prowlapp.com/publicapi/add'; | |
| $fields = array( | |
| 'apikey' => 'API_KEY', | |
| 'application' => 'APP', | |
| 'event' => "jobs done", | |
| 'description' => "TeXT", | |
| // https://www.prowlapp.com/api.php | |
| // meh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function os_arch () | |
| { | |
| echo $($(command -v file) /bin/bash | grep -o -m 1 '32\|64' | head -1); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "$(tail -1000 /tmp/cron.log)" > /tmp/cron.log | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # A speedtest agnostic(ish) install script | |
| # | |
| # @version 0.1.0 | |
| # @license DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| # | |
| # uncomment this for debugging | |
| # set -x | |
| # Set environment |
OlderNewer