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
| FILE SPACING: | |
| # double space a file | |
| sed G | |
| # double space a file which already has blank lines in it. Output file | |
| # should contain no more than one blank line between lines of text. | |
| sed '/^$/d;G' |
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 | |
| usage() | |
| { | |
| cat <<EOF | |
| Usage: $(basename $0) [options] | |
| This shell script is a simple wrapper around the openssl binary. It uses | |
| s_client to get certificate information from remote hosts, or x509 for local | |
| certificate files. It can parse out some of the openssl output or just dump all |
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
| events { worker_connections 2014; } | |
| http { | |
| include /etc/nginx/conf.d/*.conf; | |
| default_type text/plain; | |
| error_log /var/log/nginx/example_debug_error.log debug; | |
| access_log /var/log/nginx/example_access.log; |