grep -A 26 "some text" somefile.txt |
awk '/other text/ { gsub(/M/, " "); print $4 }' |
sort -n -r | uniq | head -1
will return the largest in a list pulled from a large text file, but how do I store the output as a variable?
|
|
|
Use command substitution:
Also, for portability, I would suggest always using |
||||
|
|
|
For unnested cases back quotes will work too:
|
||||
|
|
|
I'd suggest
|
|||
|
|