I know I can look it up, but since we are on the subject :-) how do you go about creating aliases and what is the su alias you both agree to.
Michel
Michel
alias su='sudo -i'
# Alias definitions.# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# Alias definitions.# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
yes this is working out just fine ......did not even half to log out after making the .bash_aliases file with one alias per line ,just close and reopen the terminal .
yes this is working out just fine ......did not even half to log out after making the .bash_aliases file with one alias per line ,just close and reopen the terminal .source ~/.bash_aliases
source ~/.bash_aliases
# Alias definitions.# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
There are 0 users viewing this topic.
Comment