Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. 9376/favorites' > b.txt
  2.  
  3.  
  4. curl -sS 'https://www.derpibooru.org/images/2169377/favorites' > a.txt
  5.  
  6.  
  7. grep '/profiles/[^"]*' a.txt b.txt -h  -o | sort -u  | wc
  8.    583     583   12403
  9.  
  10.  
  11. grep '/profiles/[^"]*' a.txt  -h  -o | sort -u  | wc
  12.    278     278    5979
  13.  
  14.  
  15. grep '/profiles/[^"]*' b.txt  -h  -o | sort -u  | wc
  16.    543     543   11549
  17.  
  18.  
  19. echo $((583 - 543))
  20. 40
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement