Guest User

Untitled

a guest
Jan 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. wget -nv -c -r -H -A mp3 -nd http://url.to.old.podcasts.com/
  2.  
  3. 1.mp3?foo=bar
  4. 2.mp3?blatz=pow
  5. 3.mp3?fizz=buzz
  6.  
  7. 1.mp3
  8. 2.mp3
  9. 3.mp3
  10.  
  11. wget --content-disposition
  12.  
  13. # /bin/bash
  14. for i in `find $1 -type f`
  15. do
  16. mv $i `echo $i | cut -d? -f1`
  17. done
  18.  
  19. #! /bin/sh
  20. exec wget --progress=bar:force $* 2>&1 |
  21. perl -pe 'BEGIN { $| = 1 } s,(?<=`)([^x27?]+),e[36;1m$1e[0m, if /^Saving/'
  22. cgi-cut # rename files
Add Comment
Please, Sign In to add comment