This file contains 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 -x | |
# | |
# From: http://stackoverflow.com/questions/394230/detect-the-os-from-a-bash-script | |
PLATFORM=$(uname) | |
case "$PLATFORM" in | |
"Darwin") | |
# macOS | |
;; | |
"Linux") |
This file contains 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 | |
# | |
# Name: pingtimer.sh | |
# Desc: Monitor network, gathering ping and HTTP headers | |
# URL: https://gist.github.com/lyndell/21d7ada9774784b03da1 | |
# | |
# Author: Lyndell Rottmann | |
# WWW: http://Lyndell.US | |
# Copyright (c) 2015 Lyndell Rottmann | |
# |
This file contains 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 | |
# | |
# Name: rmkey.sh | |
# Desc: Remove an IP's fingerprint from the SSH known_hosts file | |
# URL: https://gist.github.com/lyndell/c2f53d0c3e3c0e37af70 | |
# | |
# Author: Lyndell Rottmann | |
# WWW: http://Lyndell.US | |
# Copyright (c) 2015 Lyndell Rottmann | |
# |
This file contains 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 -x | |
# | |
# Name: tarNdate | |
# Desc: Wrap up a directory in a tar file with the directy's date. | |
# URL: https://gist.github.com/lyndell/853a2ade7e579f281933 | |
# | |
# Author: Lyndell Rottmann | |
# WWW: http://Lyndell.US | |
# Copyright (c) 2015 Lyndell Rottmann | |
# |
This file contains 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 -x | |
# | |
# Copyright (c) 2015 Lyndell Rottmann | |
# | |
# Debug mode on/off: (default off) | |
set +x | |
if [ -z "$@" ];then | |
echo "I can haz IPs?" |
This file contains 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 | |
# | |
# Author: Lyndell | |
# URL: http://www.Lyndell.US/ | |
# gist: https://gist.github.com/6f864b63759153eee197.git | |
# | |
# | |
# | |
# Quick script to backup the home directory in \*nix environment to other servers. | |
# |
This file contains 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 | |
# | |
# Example output: | |
# | |
# ```bash | |
# root@server [~]# df -h /usr | |
# Filesystem Size Used Avail Use% Mounted on | |
# /dev/sda3 7.8G 7.4G 112K 100% /usr | |
# root@server [~]# | |
# root@server [~]# cd /usr/local/ |
This file contains 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 -x | |
trap exit SIGINT | |
while (true) | |
do | |
echo | |
echo | |
curl -D - http://icanhaztrace.com |
This file contains 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 -x | |
# | |
# Copyright (c) 2015 Lyndell Rottmann | |
# | |
# Debug mode on/off: (default off) | |
set +x | |
if [[ "$OSTYPE" == "darwin"* ]]; then | |
if [ ! $1 ] |
This file contains 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 | |
header('Content-Type: text/plain'); | |
# GOTO | |
echo "\n\n"; | |
echo "with GOTO:\n"; | |
home: |
OlderNewer