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 | |
| # Just Cause 2 | |
| # Server Management Script | |
| # Author: Daniel Gibbs | |
| # Website: https://gameservermanagers.com | |
| if [ -f ".dev-debug" ]; then | |
| exec 5>dev-debug.log | |
| BASH_XTRACEFD="5" | |
| set -x | |
| 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 | |
| # check_glibc_requirements.sh function | |
| # Author: Daniel Gibbs | |
| # Website: https://danielgibbs.co.uk | |
| # Description: Automatically detects the version of GLIBC that is required. | |
| # Can check a file or directory recursively | |
| # Usage check_glibc_requirements.sh [dir] | |
| echo "=================================" | |
| echo "GLIBC Requirements Checker" |
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
| // Gmail/Inbox Email Trash Script | |
| // Using Google Script | |
| // Clears out all emails older than X days | |
| // Labels | |
| function multipleLabels() { | |
| var myLabels = { | |
| '"Updates"': "7d", | |
| '"Forums"': "7d", | |
| '"Promotions"': "7d", |
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
| ./steamcmd.sh +help +help login +help scripts +help commandline +help convars +help app_build +help app_update | |
| Redirecting stderr to '/home/cssserver/Steam/logs/stderr.txt' | |
| [ 0%] Checking for available updates... | |
| [----] Verifying installation... | |
| Steam Console Client (c) Valve Corporation | |
| -- type 'quit' to exit -- | |
| Loading Steam API...OK. | |
| Usage: steamcmd ["+COMMAND [ARG]..."]... | |
| or: steamcmd +runscript SCRIPTFILE |
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
| Convars: | |
| app_info_http_min = "0" : | |
| app_info_http_num_sockets = "8" : | |
| AsyncFileIODisableWrite = "0" : | |
| AsyncFileIOExpectOutstandingIO = "16" : | |
| AsyncFileIOForceGenericIO = "0" : | |
| AsyncFileIOMaxPending = "128" : | |
| AsyncFileIOReadHandleCache = "32" : | |
| AsyncFileIOWriteHandleCache = "128" : | |
| batterypercent = "0" : |
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 | |
| # Carriage Return Checker | |
| # Author: Daniel Gibbs | |
| # Website: http://danielgibbs.co.uk | |
| # Version: 101214 | |
| # Description: Checks if a carriage return is present in a variable | |
| # Place Variable here | |
| var= | |
| echo "" |
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 | |
| # SSH Remote Host Auto Login Script | |
| # Author: Daniel Gibbs | |
| # Website: http://danielgibbs.co.uk | |
| # Version: 100914 | |
| clear | |
| echo "=================================" | |
| echo "SSH Auto Login" | |
| echo "=================================" | |
| echo "" |
NewerOlder