Browse Source

move MAKE aliases into convenience.sh

master
heck 7 months ago
parent
commit
f58757abfc
  1. 5
      bash_profile.d/00_base.sh
  2. 6
      bash_profile.d/convenience.sh

5
bash_profile.d/00_base.sh

@ -41,11 +41,6 @@ export HISTSIZE=100000
alias sp='source $HOME/.bash_profile'
alias m='make'
alias mc='m clean'
alias mi='m install'
alias md='m develop'
# grep
alias grep='grep --color=auto'

6
bash_profile.d/convenience.sh

@ -1,5 +1,11 @@
#!/bin/bash
echo "lazyass MAKE aliases..."
alias m='make'
alias mc='m clean'
alias mi='m install'
alias md='m develop'
function heck_rm_o_and_d_files_recurse() {
rm -v $(find . | grep -E '\.o$|\.d$')
}

Loading…
Cancel
Save