You are not logged in.
I have aliases for example :
alias checksys='pacman -Qk 2>&1 |grep -Fv "0 missing"' when I run
run0 checksys i get error :
Failed to find executable checksys: No such file or directory the alias is working under run0 (like su) . i dont have any other issue running programs with run0 (run0 pacman -Qk is working)
thanks .
Last edited by rotema8 (2024-06-21 17:15:25)
Offline
https://unix.stackexchange.com/question … re-aliases - same problem, same solution.
Offline
thanks . learned something new today ![]()
Offline
Keep in mind that you're expanding the alias in the user shell, not the root shell.
(Ie. if your regular user has "alias foo=foo" and your root has "aliase foo=bar", "run0 foo" will run "foo", not "bar")
Offline