[UPDATE][SHELL] Compiler aliases with flags
This commit is contained in:
parent
376598a9a5
commit
85319475ab
|
@ -31,3 +31,7 @@ alias histg='history | grep'
|
||||||
alias myip='curl http://ipecho.net/plain; echo'
|
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 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'
|
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'
|
||||||
|
|
Loading…
Reference in a new issue