Guest User

Untitled

a guest
Sep 9th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.17 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2.  
  3. # My big & ugly du2json awk parser
  4. # 2012 satreix
  5.  
  6. {
  7. path = $1
  8. name = { FS="/"; print $1}
  9.  
  10. print "{\"name\": \"" name "\", \"size\": " $2 "}"
  11. }
Add Comment
Please, Sign In to add comment