Skip to content

Instantly share code, notes, and snippets.

View ThorstenHans's full-sized avatar
:octocat:

Thorsten Hans ThorstenHans

:octocat:
View GitHub Profile
@ThorstenHans
ThorstenHans / sexy.rb
Created July 21, 2011 09:35
Ruby is sexy :)
class CommandLineExecuter
def self.execute(cli,props = {},nameless_param)
parameters = props.collect { |key,value| "/#{key}=#{value}" }.join " "
exec("#{cli} #{nameless_param} #{parameters}")
end
end
#Sample usage
CommandLineExecuter.execute "notepad"
@snaewe
snaewe / fancy-git-bash-prompt.sh
Created January 20, 2009 20:19 — forked from woods/git_svn_bash_prompt.sh
A fancy bash prompt showing some git status.
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
BLUE="\[\033[0;34m\]"
LIGHT_RED="\[\033[1;31m\]"
LIGHT_GREEN="\[\033[1;32m\]"
WHITE="\[\033[1;37m\]"
LIGHT_GRAY="\[\033[0;37m\]"
COLOR_NONE="\[\e[0m\]"