On Mon, Mar 6, 2017 at 6:50 AM, L A Walsh <[email protected]> wrote: [...] > echo 'あa a '|wc -m > 6 > > There should only be 5 characters. use echo -n then.
$ echo -n 'あa a '|wc -m
5
On Mon, Mar 6, 2017 at 6:50 AM, L A Walsh <[email protected]> wrote: [...] > echo 'あa a '|wc -m > 6 > > There should only be 5 characters. use echo -n then.
$ echo -n 'あa a '|wc -m
5