remove useless pipes
This commit is contained in:
parent
ad4edce883
commit
05ccce76bb
1 changed files with 12 additions and 12 deletions
|
@ -2,18 +2,18 @@ abbr ls 'exa --git --icons -gl'
|
|||
abbr cp 'cp -rv'
|
||||
abbr rm 'rm -rf'
|
||||
abbr mgcc 'clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes \
|
||||
| -fanalyzer -fsanitize=undefined -g main.c && ./a.out; rm a.out 2> /dev/null'
|
||||
-fanalyzer -fsanitize=undefined -g main.c && ./a.out; rm a.out 2> /dev/null'
|
||||
abbr vgcc 'clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes \
|
||||
| -fanalyzer -fsanitize=undefined -g main.c && valgrind --leak-check=full \
|
||||
| --show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null'
|
||||
-fanalyzer -fsanitize=undefined -g main.c && valgrind --leak-check=full \
|
||||
--show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null'
|
||||
abbr mg++ 'clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g \
|
||||
| -Wold-style-cast -Wsign-conversion main.cpp && ./a.out; rm a.out 2> /dev/null'
|
||||
-Wold-style-cast -Wsign-conversion main.cpp && ./a.out; rm a.out 2> /dev/null'
|
||||
abbr vg++ 'clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g \
|
||||
| -Wold-style-cast -Wsign-conversion main.cpp && valgrind --leak-check=full \
|
||||
| --show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null'
|
||||
-Wold-style-cast -Wsign-conversion main.cpp && valgrind --leak-check=full \
|
||||
--show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null'
|
||||
abbr mmake 'clear; make && ./main; make clean 2> /dev/null'
|
||||
abbr vmake 'clear; make && valgrind --leak-check=full --show-leak-kinds=all \
|
||||
| --track-origins=yes -s ./main; make clean 2> /dev/null'
|
||||
--track-origins=yes -s ./main; make clean 2> /dev/null'
|
||||
abbr activate 'source bin/activate.fish'
|
||||
abbr c 'command'
|
||||
abbr vs 'code .'
|
||||
|
@ -28,18 +28,18 @@ abbr ..5 'cd ../../../../..'
|
|||
abbr cat 'bat'
|
||||
abbr nano 'micro'
|
||||
abbr bigupdate 'yay -Syu --noconfirm && tldr --update && yes | sdk update && \
|
||||
| yes | sdk upgrade java'
|
||||
yes | sdk upgrade java'
|
||||
abbr d 'explorer.exe .'
|
||||
abbr gc 'git clone'
|
||||
abbr cl 'cat src/**.* | sed \'/^\s*$/d\' | wc -l'
|
||||
abbr mirrors_update "curl -s \
|
||||
| 'https://archlinux.org/mirrorlist/?country=FR&country=GB&protocol=https&use_mirror_status=on' \
|
||||
| | sed -e 's/^#Server/Server/' -e '/^#/d' | sudo bash -c 'rankmirrors -n 7 - > \
|
||||
| /etc/pacman.d/mirrorlist' && sudo pacman -Syy"
|
||||
'https://archlinux.org/mirrorlist/?country=FR&country=GB&protocol=https&use_mirror_status=on' \
|
||||
| sed -e 's/^#Server/Server/' -e '/^#/d' | sudo bash -c 'rankmirrors -n 7 - > \
|
||||
/etc/pacman.d/mirrorlist' && sudo pacman -Syy"
|
||||
abbr ocamlbuild 'ocamlbuild -no-hygiene'
|
||||
abbr opamupdate 'opam update && opam upgrade -y'
|
||||
abbr yay-rebuild 'checkrebuild | awk \'{print \$2}\' | xargs -r yay -S \
|
||||
| --rebuildtree --noconfirm'
|
||||
--rebuildtree --noconfirm'
|
||||
abbr pacman-clean 'sudo pacman -Rsn \$(pacman -Qqtd) --noconfirm'
|
||||
abbr diff 'delta'
|
||||
abbr grep 'grep -Irni \'txt\' .'
|
||||
|
|
Loading…
Reference in a new issue