Guest User

Untitled

a guest
Nov 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. cat file
  2. 0.000 0.0 425.2 2.23
  3. 0.000 0.0 477.9 0.91
  4. 0.000 0.0 516.5 -0.41
  5. 0.000 0.0 566.5 -3.72
  6.  
  7. awk 'NR==1 {print $3}' file
  8.  
  9. awk '{NR==1 { temp=$3 } NR>1 { /* do stuff that refers to temp */ }' /path/to/file
Add Comment
Please, Sign In to add comment