Something funny seems to be going on with quoted s...
# kash_shell
m
Something funny seems to be going on with quoted strings. In bash I get this:
Copy code
:) ~
$ echo "12345" | wc
       1       1       6
:) ~
$ echo 12345 | wc
       1       1       6
But kash gives me this:
Copy code
/Users/matt.malone$ echo "12345" | wc
       1       0       1

/Users/matt.malone$ echo 12345 | wc
       1       1       6