Skip to content

Instantly share code, notes, and snippets.

View olegch's full-sized avatar

Oleg Chunikhin olegch

View GitHub Profile
@olegch
olegch / vim show whitespaces
Last active December 13, 2015 22:08
vim show whitespaces
:set listchars=eol:$,tab:>-,trail:~,extends:>,precedes:<
:set list
@olegch
olegch / Git repo refactoring.sh
Last active December 13, 2015 20:58
Commands/sequence useful for git repository refactoring
#!/bin/bash
# Delete everything except some files:
find . -not \( -path "./.git" -o -path "./.git/*" -o -path "./pom.xml" \) -delete
# checkout all branches you want to have:
for i in develop br1 br2 br3; do git branch -t $i origin/$i; done
# automatically find all remote branches:
for i in `git show-ref | awk '/ refs\/remotes\/origin\// { sub(/refs\/remotes\/origin\//,""); print $2 }' | grep -v '^HEAD$'`; do git branch -t $i origin/$i; done
@olegch
olegch / scriptsource.sh
Created February 3, 2012 15:20
Full directory name of the script no matter where it is being called from
#!/bin/bash
# This code is originally from http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in
# It is a useful one-liner which will give you the full directory name of the script no matter where it is being called from
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Or, to get the dereferenced path (all directory symlinks resolved), do this:
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
@olegch
olegch / README.md
Created January 24, 2012 16:46
These scripts are used for simple management of hostnames for several VirtualBox VMs comprising a test or sandbox environment on your local machine.

These scripts are used for simple management of hostnames for several VirtualBox VMs comprising a test or sandbox environment on your local machine.

Architecture:

  1. each VM is configured to use bridged network adapter, so all VMs and the host can see each other

  2. a script is installed in each VM to run on post-ifup, which grabs VM's IP, puts "$IP $desired-hostname $desired-fully-qualified-hostname" into /etc/hosts, changes hostname correspondingly, and puts VM's hostname and fq-hostname into VM's properties

  3. a script is used on the host machine, which loops through running VMs, and updates /etc/hosts on the host machine and on the VMs