How to display all the lines which ends with the word unix in any
given file and sorts those lines in ascending order.
Asked
Active
Viewed 2,605 times
-1
1 Answers
3
Your command should be :
grep 'unix$' your_file | sort
Of course you shoud replace your_file with the file you want to sort.
storm
- 5,013