Skip to content

Commit

Permalink
Fix bogus bash binary location
Browse files Browse the repository at this point in the history
  • Loading branch information
grimreaper committed Apr 17, 2012
1 parent a74279d commit 3fc60b5
Show file tree
Hide file tree
Showing 57 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion aliases/available/bundler.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Bundler Commands
alias be="bundle exec"
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/emacs.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

case $OSTYPE in
linux*)
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/general.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# List directory contents
alias sl=ls
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/git.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Aliases
alias gcl='git clone'
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/heroku.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# heroku
alias h='heroku'
Expand Down
4 changes: 2 additions & 2 deletions aliases/available/hg.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

alias hs='hg status'
alias hsum='hg summary'
Expand All @@ -11,4 +11,4 @@ function hg-help() {
echo " hsum = hg summary"
echo " hcm = hg commit -m"
echo
}
}
2 changes: 1 addition & 1 deletion aliases/available/osx.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Desktop Programs
alias fireworks="open -a '/Applications/Adobe Fireworks CS3/Adobe Fireworks CS3.app'"
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/rails.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Rails Commands
alias r='rails'
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/textmate.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

case $OSTYPE in
darwin*)
Expand Down
2 changes: 1 addition & 1 deletion aliases/available/todo.txt-cli.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

alias tls="$TODO ls"
alias ta="$TODO a"
Expand Down
4 changes: 2 additions & 2 deletions aliases/available/vim.aliases.bash
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash

alias v='mvim --remote-tab'
alias v='mvim --remote-tab'
2 changes: 1 addition & 1 deletion bash_it.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Initialize Bash It

# Reload Library
Expand Down
2 changes: 1 addition & 1 deletion completion/available/fabric-completion.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Bash completion support for Fabric (http://fabfile.org/)
#
Expand Down
2 changes: 1 addition & 1 deletion completion/available/rake.completion.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Bash completion support for Rake, Ruby Make.

export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}
Expand Down
2 changes: 1 addition & 1 deletion completion/available/ssh.completion.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Bash completion support for ssh.

export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}
Expand Down
2 changes: 1 addition & 1 deletion completion/available/tmux.completion.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# tmux completion
# See: http://www.debian-administration.org/articles/317 for how to write more.
Expand Down
2 changes: 1 addition & 1 deletion custom/example.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# This is an example file. Don't use this for your custom scripts. Instead, create another file within the
# custom directory.
2 changes: 1 addition & 1 deletion lib/appearance.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# colored grep
export GREP_OPTIONS='--color=auto'
Expand Down
4 changes: 2 additions & 2 deletions lib/history.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# append to bash_history if Terminal.app quits
shopt -s histappend
Expand All @@ -17,4 +17,4 @@ export AUTOFEATURE=true autotest

function rh {
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
}
}
2 changes: 1 addition & 1 deletion lib/preexec.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# http://www.twistedmatrix.com/users/glyph/preexec.bash.txt
# preexec.bash -- Bash support for ZSH-like 'preexec' and 'precmd' functions.

Expand Down
2 changes: 1 addition & 1 deletion plugins/available/base.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# For generic functions.

Expand Down
2 changes: 1 addition & 1 deletion plugins/available/battery.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

battery_percentage(){
if command_exists acpi;
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/dirs.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Directory stack navigation:
#
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/git.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

function git_remote {
echo "Running: git remote add origin ${GIT_HOSTING}:$1.git"
Expand Down
4 changes: 2 additions & 2 deletions plugins/available/hg.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
hg_dirty() {
hg status --no-color 2> /dev/null \
| awk '$1 == "?" { print "?" } $1 != "?" { print "!" }' \
Expand All @@ -11,4 +11,4 @@ hg_in_repo() {

hg_branch() {
hg branch 2> /dev/null
}
}
2 changes: 1 addition & 1 deletion plugins/available/javascript.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# The install directory is hard-coded. TOOD: allow the directory to be specified on the command line.
#
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/jekyll.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

editpost() {
unset SITE
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/latex.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# add mactex to the path if its present
MACTEX_PATH=/usr/local/texlive/2009/bin/universal-darwin
Expand Down
4 changes: 2 additions & 2 deletions plugins/available/nginx.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

function nginx_reload() {
FILE="${NGINX_PATH}/logs/nginx.pid"
Expand Down Expand Up @@ -47,4 +47,4 @@ function nginx_restart() {
echo "Nginx pid file not found"
return 0
fi
}
}
2 changes: 1 addition & 1 deletion plugins/available/osx.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

function tab() {
osascript 2>/dev/null <<EOF
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/python.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ $(uname) = "Linux" ]
then
Expand Down
4 changes: 2 additions & 2 deletions plugins/available/rbenv.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
#!/usr/bin/env bash

# Load rbebv, if you are using it
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"

# Load the auto-completion script if rbenv was loaded.
source ~/.rbenv/completions/rbenv.bash
source ~/.rbenv/completions/rbenv.bash
4 changes: 2 additions & 2 deletions plugins/available/ruby.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
function remove_gem {
gem list | grep $1 | awk '{ print $1; }' | xargs sudo gem uninstall
}
}
2 changes: 1 addition & 1 deletion plugins/available/rvm.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Load RVM, if you are using it
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
Expand Down
4 changes: 2 additions & 2 deletions plugins/available/ssh.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
#!/usr/bin/env bash

function add_ssh() {
echo -en "\n\nHost $1\n HostName $2\n User $3\n ServerAliveInterval 30\n ServerAliveCountMax 120" >> ~/.ssh/config
}

function sshlist() {
awk '$1 ~ /Host$/ { print $2 }' ~/.ssh/config
}
}
4 changes: 2 additions & 2 deletions plugins/available/subversion.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
#!/usr/bin/env bash
rm_svn(){
find $1 -name .svn -print0 | xargs -0 rm -rf
}

svn_add(){
svn status | grep '^\?' | sed -e 's/? *//' | sed -e 's/ /\ /g' | xargs svn add
}
}
2 changes: 1 addition & 1 deletion plugins/available/tmuxinator.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash

[[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && . $HOME/.tmuxinator/scripts/tmuxinator
2 changes: 1 addition & 1 deletion plugins/available/vagrant.plugins.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_vagrant()
{
cur="${COMP_WORDS[COMP_CWORD]}"
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/virtualenv.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# make sure virtualenvwrapper is enabled if available
[[ `which virtualenvwrapper.sh` ]] && . virtualenvwrapper.sh
Expand Down
2 changes: 1 addition & 1 deletion plugins/available/z.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# maintains a jump-list of the directories you actually use
#
Expand Down
2 changes: 1 addition & 1 deletion template/bash_profile.template.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Load RVM, if you are using it
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
Expand Down
2 changes: 1 addition & 1 deletion themes/base.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

THEME_PROMPT_HOST='\H'
SCM_THEME_PROMPT_DIRTY=''
Expand Down
2 changes: 1 addition & 1 deletion themes/bobby/bobby.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
SCM_THEME_PROMPT_DIRTY=" ${red}"
SCM_THEME_PROMPT_CLEAN=" ${bold_green}"
SCM_THEME_PROMPT_PREFIX=" |"
Expand Down
2 changes: 1 addition & 1 deletion themes/candy/candy.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
function prompt_command() {
PS1="${green}\u@\h ${blue}\T ${reset_color}${white}\w${reset_color}$(scm_prompt_info)\]${blue}${bold_blue} ${reset_color} ";
}
Expand Down
2 changes: 1 addition & 1 deletion themes/colors.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

function __ {
echo "$@"
Expand Down
2 changes: 1 addition & 1 deletion themes/demula/demula.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Theme inspired on:
# - Ronacher's dotfiles (mitsuhikos) - http://github.com/mitsuhiko/dotfiles/tree/master/bash/
Expand Down
2 changes: 1 addition & 1 deletion themes/doubletime/doubletime.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
SCM_THEME_PROMPT_DIRTY=''
SCM_THEME_PROMPT_CLEAN=''
SCM_GIT_CHAR="${bold_cyan}±${normal}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

source "$BASH_IT/themes/doubletime/doubletime.theme.bash"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

source "$BASH_IT/themes/doubletime/doubletime.theme.bash"

Expand Down
2 changes: 1 addition & 1 deletion themes/envy/envy.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
SCM_THEME_PROMPT_DIRTY=" ${red}"
SCM_THEME_PROMPT_CLEAN=" ${bold_green}"
SCM_THEME_PROMPT_PREFIX=" |"
Expand Down
2 changes: 1 addition & 1 deletion themes/hawaii50/hawaii50.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# This theme was obviously inspired a lot by
#
Expand Down
2 changes: 1 addition & 1 deletion themes/n0qorg/n0qorg.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# n0qorg theme by Florian Baumann <[email protected]>

## look-a-like
Expand Down
2 changes: 1 addition & 1 deletion themes/pete/pete.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

prompt_setter() {
# Save history
Expand Down
2 changes: 1 addition & 1 deletion themes/rainbowbrite/rainbowbrite.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# based off of n0qorg
# looks like, if you're in a git repo:
Expand Down
2 changes: 1 addition & 1 deletion themes/simple/simple.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# prompt themeing

Expand Down
2 changes: 1 addition & 1 deletion themes/tylenol/tylenol.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Based on 'bobby' theme with the addition of virtualenv_prompt
#
Expand Down
2 changes: 1 addition & 1 deletion themes/zitron/zitron.theme.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# zitron theme by Florian Baumann <[email protected]>

## git-theme
Expand Down

0 comments on commit 3fc60b5

Please sign in to comment.