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 | |
| set -eu | |
| SYSCTL_FILE=/etc/sysctl.d/90-tcp-bbr.conf | |
| # check root | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi |
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 | |
| # This project has been moved to https://github.com/Jamesits/vps2routeros. | |
| # This script is still kept for compatibility, but it will not be updated anymore. | |
| echo "You are using an old version of vps2routeros. Please download the new version from https://github.com/Jamesits/vps2routeros ." | |
| # VPS2RouterOS | |
| # | |
| # !!!!!!!!!PLEASE READ ALL THE FOLLOWING TEXT BEFORE RUNNING THIS!!!!!!!!!!! |
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
| // -*- coding: utf-8 -*- | |
| // ==UserScript== | |
| // @name They are all 17 years old | |
| // @author HIRATA Yasuyuki <yasu@asuka.net> | |
| // @namespace http://yasu.asuka.net/ | |
| // @version 1.1.0 | |
| // @include http://www.google.tld/search?* | |
| // @include https://www.google.tld/search?* | |
| // @released 2013-04-23 | |
| // @updated 2013-04-30 |