Created
July 18, 2018 21:50
-
-
Save nishnik/935a367b9bbbaf83711fa19b8d0a79f5 to your computer and use it in GitHub Desktop.
Finds the minimum and maximum value in 3rd column of a text file
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
cat crowds_zara01_train.txt | awk -F ' ' '{print $3}' | sort -n | sed -n '1p;$p' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment