You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for pointing it out. I was notified, but didn't get the time to check right away. I'll need some time to incorporate the couple of issues you brought forward. Meanwhile feel free to go ahead and create pull requests for the same.
@mayank-02 Are you getting notified of these?
See the INPUT FILES section of this document,
https://www.unix.com/man-page/posix/1p/sort/
GNU sort,
$ echo -ne "a\nb\nc" | sort
a
b
c
$
msort,
$ echo -ne "a\nb\nc" | msort
a
b
c$
The text was updated successfully, but these errors were encountered: