.bash_aliases
Kod: Markera allt
alias google='{
echo "Vad ska du söka efter.?"
read
firefox http://www.google.se/search?hl=sv\&q=$REPLY
}'
google sökOrd
kanske någon annan vet hur man får de stiligare..

Kod: Markera allt
alias google='{
echo "Vad ska du söka efter.?"
read
firefox http://www.google.se/search?hl=sv\&q=$REPLY
}'
Kod: Markera allt
google() {
q="";
for f in $@; do
if [ "$q" == "" ]; then
q=$f; else
q="$q+$f";
fi
done
dillo "http://www.google.se/search?q=$q" >/dev/null
}
Kod: Markera allt
. .bashrc
Kod: Markera allt
google ubuntu sverige
Kod: Markera allt
q=${q//å/%C3%A5}
q=${q//ä/%C3%A4}
q=${q//ö/%C3%B6}
Kod: Markera allt
johan@prometheus:~$ google ubuntu sverige
[1] 9476
bash: ubuntu: kommando hittades inte
johan@prometheus:~$
Kod: Markera allt
johan@prometheus:~$ google ubuntu sverige
[1] 9476
bash: ubuntu: kommando hittades inte
johan@prometheus:~$
Kod: Markera allt
google()
{
q="";
for f in $@; do
if [ "$q" == "" ]; then
q=$f; else
q="$q+$f";
fi
done
q=${q//\./\"}
#q=${q//å/%C3%A5}
#q=${q//ä/%C3%A4}
#q=${q//ö/%C3%B6}
firefox "http://www.google.se/search?q=$q" >/dev/null
}
Kod: Markera allt
johan@prometheus:~$ bash-reload
bash: /home/johan/.bash_aliases: line 58: syntax error near unexpected token `)'
bash: /home/johan/.bash_aliases: line 58: `google()'
Kod: Markera allt
alias add-alias="echo alias $1 >> ~/.bash_aliases"
alias bash-reload='. .bashrc'
alias apt-search='sudo apt-cache search'
alias apt-update='sudo apt-get update'
alias apt-upgrade='sudo apt-get dist-upgrade'
alias show-alias='cat ~/.bash_aliases'
alias ds='dirs -v'
alias ttouch="touch $1;chmod +x $1"
alias test="echo ${@}"
google()
{
q="";
for f in $@; do
if [ "$q" == "" ]; then
q=$f; else
q="$q+$f";
fi
done
q=${q//\./\"}
q=${q//å/%C3%A5}
q=${q//ä/%C3%A4}
q=${q//ö/%C3%B6}
dillo "http://www.google.se/search?q=$q" >/dev/null
}
cd()
{
MAX=10
LEN=${#DIRSTACK[@]}
if [ $# -eq 0 ] || [ "$1" = "-" ]; then
builtin cd "$@"
pushd -n $OLDPWD >/dev/null
else
pushd "${@:-$HOME}" >/dev/null
fi
if [ $LEN -gt 1 ]; then
for i in `seq 1 $LEN`; do
eval p=~$i
if [ "$p" = "$PWD" ]; then
popd -n +$i >/dev/null
break
fi
done
fi
if [ $LEN -ge $MAX ]; then
popd -n -0 >/dev/null
fi
}
Kod: Markera allt
alias bt='btlaunchmany ~/ankommande'
alias apti='sudo apt-get install'
alias apts='sudo apt-cache search'
alias aptr='sudo apt-get remove'
alias update='sudo apt-get update'
alias upgrade='sudo apt-get upgrade'
alias mvtorrent='mv ~/Desktop/*.torrent ~/ankommande'
alias v='mpc play'
alias c='mpc pause'
alias b='mpc next'
alias z='mpc prev'
alias x='mpc stop'
alias r='mpc repeat'
alias t='mpc random'
alias film='mplayer -fs -playlist ~/film.list'
Kod: Markera allt
alias film='mplayer -fs -playlist ~/film.list'
alias filmrefresh="find /media/usbdisk/filmer/ -name '*.*' | sort > ~/film.list"
Kod: Markera allt
alias p3="mplayer rtsp://sr-rm.qbrick.com/broadcast/cluster/encoder/02038_p3.rm"
alias p4="mplayer mms://sr-wm.qbrick.com/02038_SR-Skaraborg-High"
alias p1="mplayer rtsp://sr-rm.qbrick.com/broadcast/cluster/encoder/02038_p1.rm"
Kod: Markera allt
alias WoW='aoss wine "C:\Program Files\World of Warcraft\WoW.exe"'
alias musikall='audacious /home/tobbe/Multimedia/Musik/'
alias musikevergrey='audacious /home/tobbe/Multimedia/Musik/Evergrey/'
Håller helt med.zero gravity skrev: Anar att detta kommer bli ett beroende hos migkan bli så illa att jag inte kan använda terminalen normalt, men de e värt risken
![]()
Kod: Markera allt
alias addalias='nohup gedit /home/anders/.bash_aliases'
alias del='rm -iv'
alias x='exit'
dwarfort()
{
cd /media/F/Emuleras/Windows/Dwarfort/;
WINEDEBUG="-all" wine dwarfort.exe;
}