I can run
gnome-terminal -- journalctl --since "10min ago" -f What is the equivalent of this command for alacitty.
I tried
alacritty -e "journalctl --since \"10min ago\" -f" alacritty -e "journalctl --since '10min ago' -f" alacritty -e 'journalctl --since "10min ago" -f' every command returns
Error: Failed to spawn command 'journalctl --since '10min ago' -f': No such file or directory (os error 2)
alacritty -e journalctl --since "10min ago" -fworks. Thank you very much.