Ich möchte aus gründen der übersicht meine alias aus der bashrc in eine andere datei speichern, und diese dann über source ~/.bash/alias in der bashrc laden.
leider klappt es nicht.
Code: Alles auswählen
bashrc
--------
. $HOME/.bash/alias
Code: Alles auswählen
alias files
-----------
alias lm='ls -al |more' # pipe through 'more'
alias grep='grep --color=auto'
alias essen='echo "Ich bin auswärts essen" | mail boss -s Mittagspause'
alias halt='super halt -p'
alias reboot='super reboot'
alias rm='rm -rfv'
wenn ich dann in der shell bash schreibe, werden die alias aufgelistet
Code: Alles auswählen
michel@mp -=> bash
bash: alias: -e: not found
bash: alias: telnet: not found