Created
August 6, 2021 12:21
-
-
Save loomsen/fd74e4ed71771a2f9be7b8d38d28da35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(☸ |dev:nvarz) nvarz:~/tmp$ cat unsorted.txt | |
a | |
c | |
b | |
d | |
g | |
f | |
e | |
(☸ |dev:nvarz) nvarz:~/tmp$ sort unsorted.txt > sorted.txt | |
(☸ |dev:nvarz) nvarz:~/tmp$ cat sorted.txt | |
a | |
b | |
c | |
d | |
e | |
f | |
g | |
(☸ |dev:nvarz) nvarz:~/tmp$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment