create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| FOR /R %%F IN (*.*) DO echo.>"%%F":Zone.Identifier |
| #!/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 |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import subprocess | |
| __all__ = ["transform"] | |
| __version__ = '0.3' | |
| __author__ = 'Christoph Burgmer <[email protected]>' | |
| __url__ = 'http://github.com/cburgmer/upsidedown' |
| #!/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 (): |
| #!/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 |
| # 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 |
| #include <stdio.h> | |
| #include <unistd.h> // for sleep() | |
| // Please note, that Linux does not supports setproctitle() | |
| // (but FreeBSD does) | |
| int main (void) { | |
| setproctitle("I am C program! (%d)", getpid()); | |
| int MyTick=0; |
| alias live=' | |
| if [ -n "`screen -ls | grep LIVE`" ]; then | |
| if [ -n "`screen -ls | grep LIVE | grep Attached`" ]; then | |
| if [ -z "`echo $TERMCAP | grep screen`" ]; then | |
| echo "Enter into Atached screen..."; | |
| sleep 2; | |
| screen -x LIVE; | |
| else | |
| echo "Already in LIVE"; | |
| fi |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/usr/bin/perl -- | |
| use File::Find; | |
| my $directory1 = $ARGV[0]; | |
| my $directory2 = $ARGV[1]; | |
| find(\&hashfiles, $directory1); | |
| sub hashfiles { |