Guest User

Untitled

a guest
Mar 14th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. ## Reverse order of a file
  2. awk '{x[NR] = $0}END{while ( NR > 0 ) print x[NR--]}'
Add Comment
Please, Sign In to add comment