Skip to content

Commit

Permalink
added sbin to path
Browse files Browse the repository at this point in the history
  • Loading branch information
synle committed Nov 16, 2023
1 parent cdc4d4c commit 04693f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bash-profile-barebone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export EDITOR='vim'

export BASH_PATH=~/.bashrc

# add sbin to path
export PATH=$PATH:/sbin

# os flags
export is_os_darwin_mac=0 && [ -d /Applications ] && export is_os_darwin_mac=1
export is_os_window=0 && [ -d /mnt/c/Users ] && export is_os_window=1
Expand Down Expand Up @@ -49,7 +52,7 @@ alias flake8="python -m flake8"
alias n="node"
alias y="yarn"
alias s='ssh -4'
alias b="bat --style=plain"
alias b="bat --style=plain"
alias c="curl -H 'Cache-Control: no-cache, no-store' -H 'Pragma: no-cache'"

br(){
Expand Down

0 comments on commit 04693f1

Please sign in to comment.