Advertisement
Guest User

Untitled

a guest
Sep 30th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. touch comments
  4. wget http://gravitytales.com/novel/king-of-gods/kog-chapter-{1..825}/comments
  5. rm comments
  6.  
  7. for file in comments.*
  8. do
  9. chapter="${file/comments./}"
  10. padded="$(printf "%03d" $chapter)"
  11. file2="kog-$padded-comments.html"
  12. mv "$file" "$file2"
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement