How to enter \n with backtick syntax?

I am not sure if I understood the problem correctly, this seems to work as I would have expected:

julia> run(`echo -e "hello\nworld"`)
hello
world
Process(`echo -e 'hello\nworld'`, ProcessExited(0))
1 Like