wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zipunzip 8-07-14_MegaCLI.zip| // ==UserScript== | |
| // @name ReviewMeta Amazon Search | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1.6 | |
| // @description Modify star ratings on Amazon pages based on ReviewMeta scores | |
| // @author bhughes339 | |
| // @include https://*.amazon.tld/* | |
| // @grant none | |
| // @require http://code.jquery.com/jquery-latest.js | |
| // ==/UserScript== |
| #!/usr/bin/env bash | |
| PLUGIN_BASE='/opt/cisco/secureclient/bin/plugins' | |
| read -r -d '' USAGE << EGASU | |
| Usage: `basename $0` [-s|-e|-d|-h] | |
| -s, --status Print Umbrella Roaming Security module status | |
| -e, --enable Enable Umbrella Roaming Security module | |
| -d, --disable Disable Umbrella Roaming Security module |
| ssh() { | |
| if [ "$(ps -p $(ps -p $$ -o ppid=) -o comm=)" = "tmux" ]; then | |
| tmux rename-window "$(echo $* | cut -d . -f 1)" | |
| command ssh "$@" | |
| tmux set-window-option automatic-rename "on" 1>/dev/null | |
| else | |
| command ssh "$@" | |
| fi | |
| } |