I decided to try fish shell, and I'm having trouble with some aliases. So I guess the painless way of doing the things would be executing the bash commands inside fish shell functions. Something like that :
function fish_function
start bash
... bash commands ...
stop bash
end
Is that possible ?
e.g: the command pacman -Qtdq && sudo pacman -Rns $(pacman -Qtdq)
pacman -Qtdq && sudo pacman -Rns $(pacman -Qtdq)
doesn't work ohin fish shell and I have no idea how to convert this