diff options
Diffstat (limited to 'bash/.bash')
-rw-r--r-- | bash/.bash/00-global.bash | 2 | ||||
-rw-r--r-- | bash/.bash/01-aliases.bash | 6 | ||||
-rw-r--r-- | bash/.bash/02-prompt.bash | 2 | ||||
-rw-r--r-- | bash/.bash/03-boot.bash | 2 | ||||
-rw-r--r-- | bash/.bash/04-other.bash | 2 |
5 files changed, 8 insertions, 6 deletions
diff --git a/bash/.bash/00-global.bash b/bash/.bash/00-global.bash index 5ad99f7..1700755 100644 --- a/bash/.bash/00-global.bash +++ b/bash/.bash/00-global.bash @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # 00-global.bash # define global bash things diff --git a/bash/.bash/01-aliases.bash b/bash/.bash/01-aliases.bash index a3818cf..b0d4060 100644 --- a/bash/.bash/01-aliases.bash +++ b/bash/.bash/01-aliases.bash @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # 01-aliases.bash # bryson's bash aliases @@ -63,11 +63,11 @@ alias nolibrary='xrandr --output HDMI-A-0 --off --output eDP --auto' # bash navigation alias add-alias='vim ~/.bash/01-aliases.bash; . ~/.bash_profile' -function search() { +search() { find . -type f -exec grep ${1} {} \; } -function ssh-pixel() { +sshpixel() { ssh -p 8022 uO_14O@${1} } diff --git a/bash/.bash/02-prompt.bash b/bash/.bash/02-prompt.bash index 62f835a..603b292 100644 --- a/bash/.bash/02-prompt.bash +++ b/bash/.bash/02-prompt.bash @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # 02-prompt.bash # bryson's gnarly bash prompt config diff --git a/bash/.bash/03-boot.bash b/bash/.bash/03-boot.bash index 6ea2c9d..c821a28 100644 --- a/bash/.bash/03-boot.bash +++ b/bash/.bash/03-boot.bash @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # 03-boot.bash # startup scripts for systems diff --git a/bash/.bash/04-other.bash b/bash/.bash/04-other.bash index ac59c89..ec258e1 100644 --- a/bash/.bash/04-other.bash +++ b/bash/.bash/04-other.bash @@ -1,3 +1,5 @@ +#!/bin/bash + # if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then # exec tmux new-session -A -s ssh # fi |