Hacker News new | ask | show | jobs
by abrookewood 3205 days ago
What are you comparing it to? Compared to Bash, I love the fact that everything gets returned as an object that you can query, rather than as a blob of text that you have to hack on.
1 comments

You're mistaken. Bash functions and unix commands return an exit status (an integer), never text.
That's for status, not data. A time in bash is a set of characters, not a time.
All the shell does is allow the user to redirect input and output streams to/from system commands. Whether these commands output/read text or binary data or both is irrelevant from the shell's standpoint.