Is it possible to run a complex terminal command and retrieve its output. I understand that RunProcess could do this but it cannot directly execute full command and it seems rather complex to rewrite things in a way that RunProcess can run them. For example if I want to run the simple command
"ls -tr | tail -1"
and retrieve the output how can I achieve this?