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
| # install.cfg: auto-install config for FreeBSD sysinstall(8) | |
| # @see /usr/src/usr.sbin/sysinstall/install.cfg | |
| ################################################################################### | |
| debug=yes | |
| nonInteractive=yes | |
| #TODO: make some swap | |
| disk=ad0 | |
| partition=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
| #!/usr/bin/env bash | |
| NAME="John Doe" | |
| RESPONDENT="author of this fine script" | |
| cat <<EndOfMessage | |
| Hi there, $NAME. | |
| Greetings to you, '$NAME', from "$RESPONDENT". | |
| EndOfMessage |
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
| #!/usr/bin/env python | |
| import os, sys, commands | |
| import argparse | |
| import ConfigParser | |
| version = '0.1.1' | |
| default_monitoring_checks_cache_path = '/var/cache/monitoring' | |
| def createParser (): |
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
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import subprocess | |
| __all__ = ["transform"] | |
| __version__ = '0.3' | |
| __author__ = 'Christoph Burgmer <[email protected]>' | |
| __url__ = 'http://github.com/cburgmer/upsidedown' |
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/sh | |
| if [ -z "$1" ] || [ ! -e $1 ] ; then | |
| echo " !! Device '$1' not found" >&2 | |
| exit 1 | |
| fi | |
| TMPFILE=`mktemp /tmp/mbr.XXXXXXXX` | |
| if [ ! -e $TMPFILE ] ; then |
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
| FOR /R %%F IN (*.*) DO echo.>"%%F":Zone.Identifier |
OlderNewer