[UPDATE][SHELL] Compiler aliases with flags

This commit is contained in:
Bruno BELANYI 2019-07-17 10:19:28 +02:00
parent 376598a9a5
commit 85319475ab

View file

@ -31,3 +31,7 @@ alias histg='history | grep'
alias myip='curl http://ipecho.net/plain; echo'
#alias logs="find /var/log -type f -exec file {} \; | grep 'text' | cut -d' ' -f1 | sed -e's/:$//g' | grep -v '[0-9]$' | xargs tail -f"
alias folders='find . -maxdepth 1 -type d -print0 | xargs -0 du -sk | sort -rn'
# Quick compilation with flags
alias clang++e='clang++ -Wall -Wextra -pedantic -Werror -std=c++17'
alias g++e='g++ -Wall -Wextra -pedantic -Werror -std=c++17'