1
0
Fork 0

minor fixes

This commit is contained in:
Maurice Audin 2016-10-03 16:30:05 +02:00
parent 4e12d3d735
commit 63a100b01e

View file

@ -1,6 +1,6 @@
# bip at command end
function precmd() {echo -n -e "\a"}
function preexec() {print -Pn "\e]0;toto\a"}
function preexec() {print -Pn "\e]0;\a"}
# do not share history between terms...
unsetopt share_history
@ -30,7 +30,7 @@ alias open_ports="sudo netstat -tulpen 2> /dev/null | grep LISTEN"
cless() {for a in $@; do colorize_via_pygmentize $a | less; done}
r() {if [ $# -eq 1 ]; then ssh root@$1; else sudo su -; fi}
health() {/usr/bin/screen -O -S health -c ~/.config/screen_health}
loop() {while [ 1 ]; do $@; done}
loop() {while [ 1 ]; do sh -c "$@"; done}
# Some exports
export EDITOR=emacsclient