From f58757abfc76f80fcc7c7aeee3e10ed74e6b1214 Mon Sep 17 00:00:00 2001 From: heck Date: Sat, 7 Sep 2024 01:32:41 +0200 Subject: [PATCH] move MAKE aliases into convenience.sh --- bash_profile.d/00_base.sh | 5 ----- bash_profile.d/convenience.sh | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bash_profile.d/00_base.sh b/bash_profile.d/00_base.sh index 26fe6e5..db47346 100644 --- a/bash_profile.d/00_base.sh +++ b/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' diff --git a/bash_profile.d/convenience.sh b/bash_profile.d/convenience.sh index 8c63011..45ffa0d 100644 --- a/bash_profile.d/convenience.sh +++ b/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$') }