Guest User

Untitled

a guest
Dec 7th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. n=0
  4. while read line; do
  5.     (( n++ ))
  6.     mplayer $line -dumpstream -dumpfile $1-`printf "%02d" $n`
  7. done
Add Comment
Please, Sign In to add comment