Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. url="https://github.com/kotatogram/kotatogram-desktop"
  4. src=`echo "${url}/raw/master/Telegram/Resources/art/icon"{16,32,48,64,128,256,512}.png`
  5.  
  6. echo $src
  7.  
  8. for link in ${src}
  9. do
  10. echo $link
  11. curl -sSL $link | sha512sum | cut -d" " -f1 >> sums
  12. # curl -sSL $i | sha512sum >> sums
  13. echo SSSSSS >> sums
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement