This commit is contained in:
Tobias Schmidl 2014-09-29 09:50:14 +02:00
parent 94a6778b3b
commit ccc8ff8074
4 changed files with 7 additions and 9 deletions

View file

@ -33,3 +33,7 @@ alias screen='screen -RU'
alias cdiff="colordiff"
xmlformat () { xmllint --format "$1" | unexpand -t 2 --first-only; }
alias jar='java -jar'
function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; }
function gg() { x-www-browser "https://www.google.de/search?q=`escape "$@"`"; }
function ddg() { www-browser "https://duckduckgo.com/?q=`escape "$@"`"; }