executing applications works fine like xterm for example or firefox but i cannot get the shell output from command line apps like ls ```ts _ready() { let args = new godot.PoolStringArray(["-c", "ls"]) let arr = [] godot.OS.execute("sh", args, true, arr) godot.print(arr) // prints empty [] } ```