Advertisement
SymphonySimper

Onepiece download script

Dec 16th, 2022
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/sh
  2. pmg='ani-cli'
  3. anime='one piece'
  4.  
  5. last_episode=$(ls | grep '[0-9]' | tr '.' ' ' | cut -d ' ' -f4 | sort | tail -n1)
  6. start_download=$((last_episode + 1))
  7. end_download=$((last_episode + 5))
  8.  
  9. echo $start_download $end_download | yoink
  10. $pmg -d $anime
  11.  
  12. # last ep 698
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement