Guest User

Untitled

a guest
Dec 11th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ~$ cat test.me
  2. hello world, I am here
  3. hello world, I am here
  4. hello world, I am here
  5. hello world, I am here
  6. hello world, I am here
  7.  
  8. ~$ awk 'NF>1{$(NF-1)=""};1' test.me
  9. hello world, I here
  10. hello world, I here
  11. hello world, I here
  12. hello world, I here
  13. hello world, I here
  14.  
  15. ~$ awk 'NF>1{$(NF-1)=""};1' test.me > test.me_tmp && mv test.me_tmp test.me
Add Comment
Please, Sign In to add comment