This community-built FAQ covers the “sort” exercise from the lesson “Redirection”.
Paths and Courses
This exercise can be found in the following Codecademy content:
Web Development
Learn the Command Line
FAQs on the exercise sort
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
Need broader help or resources? Head here.
Looking for motivation to keep learning? Join our wider discussions.
Learn more about how to use this guide.
Found a bug? Report it!
Have a question about your account or billing? Reach out to our customer support team!
None of the above? Find out where to ask other questions here!
to sort the lakes.txt information and redirected into sorted-lakes, the lesson wrote:
$ cat lakes.txt | sort > sorted-lakes.txt
but could I write $ sort lakes.txt > sorted-lakes.txt?
the result seems like the same, but is it right to write this way?
What is the differences between:
sort desserts.txt | uniq > uniq-desserts.txt
cat desserts.txt | sort | uniq > uniq-desserts.txt
cat desserts.txt | uniq | sort > uniq-desserts.txt
The last one doesnt out put the result with uniq effect. why?
1 Like
interested in the answer to this question as well!
i had the same question! is there a difference between the two lines?
I had this same question. Seems like extra steps.
Uniq only removes adjacent duplicates separated by new lines, therefore the text file contents must be sorted before uniq will accurately remove all duplicates.
Try $ uniq deserts.txt
It removes “Sahara Desert”, which is one line below “Sahara Desert,” but not Kalahari Desert.
1 Like