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 | |
| # URL for speedtest-api (Change this to match your setup) | |
| URL="localhost:3000/api/test/create" | |
| # Path to speedtest-cli (Change this to match the path to your speedtest-cli executable) | |
| SPEEDTEST_CLI_PATH="/usr/bin/speedtest-cli" | |
| # Input Field Seperator for splitting the CSV result into an array | |
| IFS="," |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |