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
| #!/usr/bin/env bash | |
| # | |
| # since Kodi needs more CPU time on my Raspberry Pi while displaying live TV | |
| # channels overview and EPG data, i want it to return to the home screen once | |
| # the screen saver kicks in. i run more than just Kodi on my Pi's. | |
| # this script is obviously designed for a German UI and needs jq & netcat. | |
| # i run it via cron at a regular interval | |
| iPORT=9090 | |
| sHOST=localhost |
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 | |
| # | |
| # Simple script to download the running configuration from the HP 1920S switch | |
| # through the HTTP "APIs" | |
| # | |
| # Run it as: | |
| # $ ./hp1920-getconfig.sh --host="10.1.2.3" --user="admin" --pass="hello" --file=startup-config | |
| # | |
| # Attila Sukosd <attila@airtame.com> | |
| # |