Skip to content

Commit 3fc60b5

Browse files
committed
Fix bogus bash binary location
1 parent a74279d commit 3fc60b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+66
-66
lines changed

aliases/available/bundler.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Bundler Commands
44
alias be="bundle exec"

aliases/available/emacs.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
case $OSTYPE in
44
linux*)

aliases/available/general.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# List directory contents
44
alias sl=ls

aliases/available/git.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Aliases
44
alias gcl='git clone'

aliases/available/heroku.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# heroku
44
alias h='heroku'

aliases/available/hg.aliases.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
alias hs='hg status'
44
alias hsum='hg summary'
@@ -11,4 +11,4 @@ function hg-help() {
1111
echo " hsum = hg summary"
1212
echo " hcm = hg commit -m"
1313
echo
14-
}
14+
}

aliases/available/osx.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Desktop Programs
44
alias fireworks="open -a '/Applications/Adobe Fireworks CS3/Adobe Fireworks CS3.app'"

aliases/available/rails.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Rails Commands
44
alias r='rails'

aliases/available/textmate.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
case $OSTYPE in
44
darwin*)

aliases/available/todo.txt-cli.aliases.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
alias tls="$TODO ls"
44
alias ta="$TODO a"

aliases/available/vim.aliases.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

3-
alias v='mvim --remote-tab'
3+
alias v='mvim --remote-tab'

bash_it.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# Initialize Bash It
33

44
# Reload Library

completion/available/fabric-completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# Bash completion support for Fabric (http://fabfile.org/)
44
#

completion/available/rake.completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# Bash completion support for Rake, Ruby Make.
33

44
export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}

completion/available/ssh.completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# Bash completion support for ssh.
33

44
export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/}

completion/available/tmux.completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# tmux completion
44
# See: http://www.debian-administration.org/articles/317 for how to write more.

custom/example.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# This is an example file. Don't use this for your custom scripts. Instead, create another file within the
44
# custom directory.

lib/appearance.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# colored grep
44
export GREP_OPTIONS='--color=auto'

lib/history.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

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

1818
function rh {
1919
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
20-
}
20+
}

lib/preexec.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# http://www.twistedmatrix.com/users/glyph/preexec.bash.txt
33
# preexec.bash -- Bash support for ZSH-like 'preexec' and 'precmd' functions.
44

plugins/available/base.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# For generic functions.
44

plugins/available/battery.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
battery_percentage(){
44
if command_exists acpi;

plugins/available/dirs.plugins.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Directory stack navigation:
44
#

plugins/available/git.plugins.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
function git_remote {
44
echo "Running: git remote add origin ${GIT_HOSTING}:$1.git"

plugins/available/hg.plugins.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
hg_dirty() {
33
hg status --no-color 2> /dev/null \
44
| awk '$1 == "?" { print "?" } $1 != "?" { print "!" }' \
@@ -11,4 +11,4 @@ hg_in_repo() {
1111

1212
hg_branch() {
1313
hg branch 2> /dev/null
14-
}
14+
}

plugins/available/javascript.plugins.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# The install directory is hard-coded. TOOD: allow the directory to be specified on the command line.
44
#

plugins/available/jekyll.plugins.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
editpost() {
44
unset SITE

plugins/available/latex.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# add mactex to the path if its present
44
MACTEX_PATH=/usr/local/texlive/2009/bin/universal-darwin

plugins/available/nginx.plugins.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
function nginx_reload() {
44
FILE="${NGINX_PATH}/logs/nginx.pid"
@@ -47,4 +47,4 @@ function nginx_restart() {
4747
echo "Nginx pid file not found"
4848
return 0
4949
fi
50-
}
50+
}

plugins/available/osx.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
function tab() {
44
osascript 2>/dev/null <<EOF

plugins/available/python.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if [ $(uname) = "Linux" ]
44
then

plugins/available/rbenv.plugin.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

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

77
# Load the auto-completion script if rbenv was loaded.
8-
source ~/.rbenv/completions/rbenv.bash
8+
source ~/.rbenv/completions/rbenv.bash

plugins/available/ruby.plugin.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
function remove_gem {
33
gem list | grep $1 | awk '{ print $1; }' | xargs sudo gem uninstall
4-
}
4+
}

plugins/available/rvm.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Load RVM, if you are using it
44
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm

plugins/available/ssh.plugins.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

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

77
function sshlist() {
88
awk '$1 ~ /Host$/ { print $2 }' ~/.ssh/config
9-
}
9+
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
rm_svn(){
33
find $1 -name .svn -print0 | xargs -0 rm -rf
44
}
55

66
svn_add(){
77
svn status | grep '^\?' | sed -e 's/? *//' | sed -e 's/ /\ /g' | xargs svn add
8-
}
8+
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
[[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && . $HOME/.tmuxinator/scripts/tmuxinator

plugins/available/vagrant.plugins.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
_vagrant()
33
{
44
cur="${COMP_WORDS[COMP_CWORD]}"

plugins/available/virtualenv.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# make sure virtualenvwrapper is enabled if available
44
[[ `which virtualenvwrapper.sh` ]] && . virtualenvwrapper.sh

plugins/available/z.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# maintains a jump-list of the directories you actually use
44
#

template/bash_profile.template.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Load RVM, if you are using it
44
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm

themes/base.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
THEME_PROMPT_HOST='\H'
44
SCM_THEME_PROMPT_DIRTY=''

themes/bobby/bobby.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
SCM_THEME_PROMPT_DIRTY=" ${red}"
33
SCM_THEME_PROMPT_CLEAN=" ${bold_green}"
44
SCM_THEME_PROMPT_PREFIX=" |"

themes/candy/candy.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
function prompt_command() {
33
PS1="${green}\u@\h ${blue}\T ${reset_color}${white}\w${reset_color}$(scm_prompt_info)\]${blue}${bold_blue} ${reset_color} ";
44
}

themes/colors.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
function __ {
44
echo "$@"

themes/demula/demula.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Theme inspired on:
44
# - Ronacher's dotfiles (mitsuhikos) - http://github.com/mitsuhiko/dotfiles/tree/master/bash/

themes/doubletime/doubletime.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
SCM_THEME_PROMPT_DIRTY=''
33
SCM_THEME_PROMPT_CLEAN=''
44
SCM_GIT_CHAR="${bold_cyan}±${normal}"

themes/doubletime_multiline/doubletime_multiline.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

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

themes/doubletime_multiline_pyonly/doubletime_multiline_pyonly.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

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

themes/envy/envy.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
SCM_THEME_PROMPT_DIRTY=" ${red}"
33
SCM_THEME_PROMPT_CLEAN=" ${bold_green}"
44
SCM_THEME_PROMPT_PREFIX=" |"

themes/hawaii50/hawaii50.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# This theme was obviously inspired a lot by
44
#

themes/n0qorg/n0qorg.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# n0qorg theme by Florian Baumann <[email protected]>
33

44
## look-a-like

themes/pete/pete.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
prompt_setter() {
44
# Save history

themes/rainbowbrite/rainbowbrite.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# based off of n0qorg
44
# looks like, if you're in a git repo:

themes/simple/simple.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# prompt themeing
44

themes/tylenol/tylenol.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# Based on 'bobby' theme with the addition of virtualenv_prompt
44
#

themes/zitron/zitron.theme.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# zitron theme by Florian Baumann <[email protected]>
33

44
## git-theme

0 commit comments

Comments
 (0)