作为一个简单的例子,在
用户foo的〜/ .bashrc中有一个别名;
alias ll='ls -l'
使用sudo我可以看到别名已设置;
bar@laptop:~$sudo -u foo -i alias ll
alias ll=`ls -l'
但是,我实际上不能使用别名;
bar@laptop:~$sudo -u foo -i ll
-bash: ll: command not found
作为bash函数的命令工作正常.有没有办法让别名也起作用?
原文链接:https://www.f2er.com/linux/394604.html